<xs:complexType name="NTRSPanDataRspType" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:all>
<xs:element name="NTRSPanReferenceId">
<xs:annotation>
<xs:documentation>
<p xmlns="http://Hps.Exchange.PosGateway">The unique reference ID (GUID format) of the real PAN.</p>
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string" />
</xs:simpleType>
</xs:element>
<xs:element name="NTRSPan">
<xs:annotation>
<xs:documentation>
<p xmlns="http://Hps.Exchange.PosGateway">The real Primary Account Number (PAN).</p>
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:long">
<xs:pattern value="\d{1,19}" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="NTRSPanExpDate">
<xs:annotation>
<xs:documentation>
<p xmlns="http://Hps.Exchange.PosGateway">The expiry date of the real PAN. The format is 'YYMM'.</p>
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:int">
<xs:pattern value="\d{4,4}" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="NTRSPanCvv">
<xs:annotation>
<xs:documentation>
<p xmlns="http://Hps.Exchange.PosGateway">The security code embedded on the back of the physical credit or debit card. </p>
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:int">
<xs:pattern value="\d{3,4}" />
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:all>
</xs:complexType>
|