UNPKG

@paciolan/cybersource-sdk

Version:
74 lines (73 loc) 5.13 kB
/** * 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. */ import { Tmsv2customersEmbeddedDefaultPaymentInstrumentCardTokenizedInformation } from './tmsv2customers-embedded-default-payment-instrument-card-tokenized-information'; /** * * @export * @interface Tmsv2customersEmbeddedDefaultPaymentInstrumentCard */ export interface Tmsv2customersEmbeddedDefaultPaymentInstrumentCard { /** * Two-digit month in which the payment card expires. Format: `MM`. Possible Values: `01` through `12`. * @type {string} * @memberof Tmsv2customersEmbeddedDefaultPaymentInstrumentCard */ expirationMonth?: string; /** * Four-digit year in which the credit card expires. Format: `YYYY`. * @type {string} * @memberof Tmsv2customersEmbeddedDefaultPaymentInstrumentCard */ expirationYear?: string; /** * Value that indicates the card type. Possible Values v2 : v1: * 001 : visa * 002 : mastercard - Eurocard—European regional brand of Mastercard * 003 : american express * 004 : discover * 005 : diners club * 006 : carte blanche * 007 : jcb * 008 : optima * 011 : twinpay credit * 012 : twinpay debit * 013 : walmart * 014 : enRoute * 015 : lowes consumer * 016 : home depot consumer * 017 : mbna * 018 : dicks sportswear * 019 : casual corner * 020 : sears * 021 : jal * 023 : disney * 024 : maestro uk domestic * 025 : sams club consumer * 026 : sams club business * 028 : bill me later * 029 : bebe * 030 : restoration hardware * 031 : delta online — use this value only for Ingenico ePayments. For other processors, use 001 for all Visa card types. * 032 : solo * 033 : visa electron * 034 : dankort * 035 : laser * 036 : carte bleue — formerly Cartes Bancaires * 037 : carta si * 038 : pinless debit * 039 : encoded account * 040 : uatp * 041 : household * 042 : maestro international * 043 : ge money uk * 044 : korean cards * 045 : style * 046 : jcrew * 047 : payease china processing ewallet * 048 : payease china processing bank transfer * 049 : meijer private label * 050 : hipercard — supported only by the Comercio Latino processor. * 051 : aura — supported only by the Comercio Latino processor. * 052 : redecard * 054 : elo — supported only by the Comercio Latino processor. * 055 : capital one private label * 056 : synchrony private label * 057 : costco private label * 060 : mada * 062 : china union pay * 063 : falabella private label * @type {string} * @memberof Tmsv2customersEmbeddedDefaultPaymentInstrumentCard */ type?: string; /** * Number of times a Maestro (UK Domestic) card has been issued to the account holder. The card might or might not have an issue number. The number can consist of one or two digits, and the first digit might be a zero. When you include this value in your request, include exactly what is printed on the card. A value of 2 is different than a value of 02. Do not include the field, even with a blank value, if the card is not a Maestro (UK Domestic) card. **Note** The issue number is not required for Maestro (UK Domestic) transactions. * @type {string} * @memberof Tmsv2customersEmbeddedDefaultPaymentInstrumentCard */ issueNumber?: string; /** * Month of the start of the Maestro (UK Domestic) card validity period. Do not include the field, even with a blank value, if the card is not a Maestro (UK Domestic) card. `Format: MM`. Possible Values: 01 through 12. **Note** The start date is not required for Maestro (UK Domestic) transactions. * @type {string} * @memberof Tmsv2customersEmbeddedDefaultPaymentInstrumentCard */ startMonth?: string; /** * Year of the start of the Maestro (UK Domestic) card validity period. Do not include the field, even with a blank value, if the card is not a Maestro (UK Domestic) card. `Format: YYYY`. **Note** The start date is not required for Maestro (UK Domestic) transactions. * @type {string} * @memberof Tmsv2customersEmbeddedDefaultPaymentInstrumentCard */ startYear?: string; /** * 'Payment Instrument was created / updated as part of a pinless debit transaction.' * @type {string} * @memberof Tmsv2customersEmbeddedDefaultPaymentInstrumentCard */ useAs?: string; /** * Hash value representing the card. * @type {string} * @memberof Tmsv2customersEmbeddedDefaultPaymentInstrumentCard */ hash?: string; /** * * @type {Tmsv2customersEmbeddedDefaultPaymentInstrumentCardTokenizedInformation} * @memberof Tmsv2customersEmbeddedDefaultPaymentInstrumentCard */ tokenizedInformation?: Tmsv2customersEmbeddedDefaultPaymentInstrumentCardTokenizedInformation; }