UNPKG

@paciolan/cybersource-sdk

Version:
82 lines (81 loc) 2.24 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 { InlineResponse2009Billing } from './inline-response2009-billing'; import { InlineResponse2009Links } from './inline-response2009-links'; import { InlineResponse2009Totals } from './inline-response2009-totals'; /** * * @export * @interface InlineResponse2009 */ export interface InlineResponse2009 { /** * * @type {InlineResponse2009Links} * @memberof InlineResponse2009 */ links?: InlineResponse2009Links; /** * Unique identification number assigned to the submitted request. * @type {string} * @memberof InlineResponse2009 */ batchId?: string; /** * ISO-8601 format: yyyy-MM-ddTHH:mm:ssZ * @type {string} * @memberof InlineResponse2009 */ batchCreatedDate?: string; /** * Valid Values: * SCHEDULER * TOKEN_API * CREDIT_CARD_FILE_UPLOAD * AMEX_REGSITRY * AMEX_REGISTRY_API * AMEX_MAINTENANCE * @type {string} * @memberof InlineResponse2009 */ batchSource?: string; /** * Reference used by merchant to identify batch. * @type {string} * @memberof InlineResponse2009 */ merchantReference?: string; /** * * @type {string} * @memberof InlineResponse2009 */ batchCaEndpoints?: string; /** * Valid Values: * REJECTED * RECEIVED * VALIDATED * DECLINED * PROCESSING * COMPLETED * @type {string} * @memberof InlineResponse2009 */ status?: string; /** * * @type {InlineResponse2009Totals} * @memberof InlineResponse2009 */ totals?: InlineResponse2009Totals; /** * * @type {InlineResponse2009Billing} * @memberof InlineResponse2009 */ billing?: InlineResponse2009Billing; /** * * @type {string} * @memberof InlineResponse2009 */ description?: string; }