UNPKG

@paciolan/cybersource-sdk

Version:
65 lines (64 loc) 2.73 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 { PtsV2PaymentsVoidsPost201ResponseClientReferenceInformation } from './pts-v2-payments-voids-post201-response-client-reference-information'; import { VasV2PaymentsPost201ResponseLinks } from './vas-v2-payments-post201-response-links'; import { VasV2PaymentsPost201ResponseOrderInformation } from './vas-v2-payments-post201-response-order-information'; import { VasV2PaymentsPost201ResponseTaxInformation } from './vas-v2-payments-post201-response-tax-information'; /** * * @export * @interface VasV2PaymentsPost201Response */ export interface VasV2PaymentsPost201Response { /** * * @type {VasV2PaymentsPost201ResponseLinks} * @memberof VasV2PaymentsPost201Response */ links?: VasV2PaymentsPost201ResponseLinks; /** * An unique identification number generated by Cybersource to identify the submitted request. Returned by all services. It is also appended to the endpoint of the resource. On incremental authorizations, this value with be the same as the identification number returned in the original authorization response. * @type {string} * @memberof VasV2PaymentsPost201Response */ id?: string; /** * Time of request in UTC. Format: `YYYY-MM-DDThh:mm:ssZ` **Example** `2016-08-11T22:47:57Z` equals August 11, 2016, at 22:47:57 (10:47:57 p.m.). The `T` separates the date and the time. The `Z` indicates UTC. Returned by Cybersource for all services. * @type {string} * @memberof VasV2PaymentsPost201Response */ submitTimeUtc?: string; /** * The status of the submitted transaction. Possible values: - COMPLETED * @type {string} * @memberof VasV2PaymentsPost201Response */ status?: string; /** * * @type {PtsV2PaymentsVoidsPost201ResponseClientReferenceInformation} * @memberof VasV2PaymentsPost201Response */ clientReferenceInformation?: PtsV2PaymentsVoidsPost201ResponseClientReferenceInformation; /** * * @type {VasV2PaymentsPost201ResponseTaxInformation} * @memberof VasV2PaymentsPost201Response */ taxInformation?: VasV2PaymentsPost201ResponseTaxInformation; /** * * @type {VasV2PaymentsPost201ResponseOrderInformation} * @memberof VasV2PaymentsPost201Response */ orderInformation?: VasV2PaymentsPost201ResponseOrderInformation; }