@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
80 lines (79 loc) • 2.09 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.
*/
import { InlineResponse20010ResponseRecordAdditionalUpdates } from './inline-response20010-response-record-additional-updates';
/**
*
* @export
* @interface InlineResponse20010ResponseRecord
*/
export interface InlineResponse20010ResponseRecord {
/**
* Valid Values: * NAN * NED * ACL * CCH * CUR * NUP * UNA * ERR * DEC
* @type {string}
* @memberof InlineResponse20010ResponseRecord
*/
response?: string;
/**
*
* @type {string}
* @memberof InlineResponse20010ResponseRecord
*/
reason?: string;
/**
*
* @type {string}
* @memberof InlineResponse20010ResponseRecord
*/
token?: string;
/**
*
* @type {string}
* @memberof InlineResponse20010ResponseRecord
*/
instrumentIdentifierId?: string;
/**
* Valid Values: * true * false
* @type {string}
* @memberof InlineResponse20010ResponseRecord
*/
instrumentIdentifierCreated?: string;
/**
*
* @type {string}
* @memberof InlineResponse20010ResponseRecord
*/
cardNumber?: string;
/**
*
* @type {string}
* @memberof InlineResponse20010ResponseRecord
*/
cardExpiryMonth?: string;
/**
*
* @type {string}
* @memberof InlineResponse20010ResponseRecord
*/
cardExpiryYear?: string;
/**
*
* @type {string}
* @memberof InlineResponse20010ResponseRecord
*/
cardType?: string;
/**
*
* @type {Array<InlineResponse20010ResponseRecordAdditionalUpdates>}
* @memberof InlineResponse20010ResponseRecord
*/
additionalUpdates?: Array<InlineResponse20010ResponseRecordAdditionalUpdates>;
}