UNPKG

@paciolan/cybersource-sdk

Version:
71 lines (70 loc) 3.4 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 { PtsV2PaymentsPost201Response1OrderInformation } from './pts-v2-payments-post201-response1-order-information'; import { PtsV2PaymentsPost201Response1PaymentInformation } from './pts-v2-payments-post201-response1-payment-information'; import { PtsV2PaymentsPost201Response1ProcessorInformation } from './pts-v2-payments-post201-response1-processor-information'; import { Ptsv2paymentreferencesidintentsClientReferenceInformation } from './ptsv2paymentreferencesidintents-client-reference-information'; /** * * @export * @interface PtsV2PaymentsPost201Response1 */ export interface PtsV2PaymentsPost201Response1 { /** * 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 PtsV2PaymentsPost201Response1 */ id?: string; /** * The status of the submitted transaction. Possible values: - AUTHORIZED - PARTIAL_AUTHORIZED - AUTHORIZED_PENDING_REVIEW - AUTHORIZED_RISK_DECLINED - PENDING_AUTHENTICATION - PENDING_REVIEW - DECLINED - INVALID_REQUEST * @type {string} * @memberof PtsV2PaymentsPost201Response1 */ status?: 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 PtsV2PaymentsPost201Response1 */ submitTimeUtc?: string; /** * * @type {PtsV2PaymentsPost201Response1ProcessorInformation} * @memberof PtsV2PaymentsPost201Response1 */ processorInformation?: PtsV2PaymentsPost201Response1ProcessorInformation; /** * Reference number for the transaction. Depending on how your Cybersource account is configured, this value could either be provided in the API request or generated by CyberSource. The actual value used in the request to the processor is provided back to you by Cybersource in the response. * @type {string} * @memberof PtsV2PaymentsPost201Response1 */ reconciliationId?: string; /** * * @type {PtsV2PaymentsPost201Response1PaymentInformation} * @memberof PtsV2PaymentsPost201Response1 */ paymentInformation?: PtsV2PaymentsPost201Response1PaymentInformation; /** * * @type {PtsV2PaymentsPost201Response1OrderInformation} * @memberof PtsV2PaymentsPost201Response1 */ orderInformation?: PtsV2PaymentsPost201Response1OrderInformation; /** * * @type {Ptsv2paymentreferencesidintentsClientReferenceInformation} * @memberof PtsV2PaymentsPost201Response1 */ clientReferenceInformation?: Ptsv2paymentreferencesidintentsClientReferenceInformation; }