@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
43 lines (42 loc) • 1.65 kB
TypeScript
/**
* CyberSource Merged Spec
* All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html
*
* OpenAPI spec version: 0.0.1
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
/**
* The expirationMonth, expirationYear and securityCode is sent to the issuer as part of network token enrollment and is not stored under the Instrument Identifier.
* @export
* @interface TmsEmbeddedInstrumentIdentifierCard
*/
export interface TmsEmbeddedInstrumentIdentifierCard {
/**
* The customer's payment card number, also known as the Primary Account Number (PAN). You can also use this field for encoded account numbers.
* @type {string}
* @memberof TmsEmbeddedInstrumentIdentifierCard
*/
number?: string;
/**
* Two-digit month in which the payment card expires. Format: `MM`. Possible Values: `01` through `12`.
* @type {string}
* @memberof TmsEmbeddedInstrumentIdentifierCard
*/
expirationMonth?: string;
/**
* Four-digit year in which the credit card expires. Format: `YYYY`.
* @type {string}
* @memberof TmsEmbeddedInstrumentIdentifierCard
*/
expirationYear?: string;
/**
* Card Verification Code. This value is sent to the issuer to support the approval of a network token provision. It is not persisted against the Instrument Identifier.
* @type {string}
* @memberof TmsEmbeddedInstrumentIdentifierCard
*/
securityCode?: string;
}