UNPKG

@paciolan/cybersource-sdk

Version:
82 lines (81 loc) 2.23 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 { InlineResponse20010Records } from './inline-response20010-records'; import { InlineResponse2009Billing } from './inline-response2009-billing'; import { InlineResponse2009Totals } from './inline-response2009-totals'; /** * * @export * @interface InlineResponse20010 */ export interface InlineResponse20010 { /** * * @type {string} * @memberof InlineResponse20010 */ version?: string; /** * ISO-8601 format: yyyy-MM-ddTHH:mm:ssZ * @type {string} * @memberof InlineResponse20010 */ reportCreatedDate?: string; /** * Unique identification number assigned to the submitted request. * @type {string} * @memberof InlineResponse20010 */ batchId?: string; /** * Valid Values: * SCHEDULER * TOKEN_API * CREDIT_CARD_FILE_UPLOAD * AMEX_REGSITRY * AMEX_REGISTRY_API * AMEX_MAINTENANCE * @type {string} * @memberof InlineResponse20010 */ batchSource?: string; /** * * @type {string} * @memberof InlineResponse20010 */ batchCaEndpoints?: string; /** * ISO-8601 format: yyyy-MM-ddTHH:mm:ssZ * @type {string} * @memberof InlineResponse20010 */ batchCreatedDate?: string; /** * Reference used by merchant to identify batch. * @type {string} * @memberof InlineResponse20010 */ merchantReference?: string; /** * * @type {InlineResponse2009Totals} * @memberof InlineResponse20010 */ totals?: InlineResponse2009Totals; /** * * @type {InlineResponse2009Billing} * @memberof InlineResponse20010 */ billing?: InlineResponse2009Billing; /** * * @type {Array<InlineResponse20010Records>} * @memberof InlineResponse20010 */ records?: Array<InlineResponse20010Records>; }