@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
85 lines (84 loc) • 4.17 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 { PtsV2CapturesRefundsPost201ResponsePointOfSaleInformation } from './pts-v2-captures-refunds-post201-response-point-of-sale-information';
import { PtsV2PaymentsCapturesPost201ResponseLinks } from './pts-v2-payments-captures-post201-response-links';
import { PtsV2PaymentsCapturesPost201ResponseOrderInformation } from './pts-v2-payments-captures-post201-response-order-information';
import { PtsV2PaymentsCapturesPost201ResponseProcessingInformation } from './pts-v2-payments-captures-post201-response-processing-information';
import { PtsV2PaymentsCapturesPost201ResponseProcessorInformation } from './pts-v2-payments-captures-post201-response-processor-information';
import { PtsV2PaymentsVoidsPost201ResponseClientReferenceInformation } from './pts-v2-payments-voids-post201-response-client-reference-information';
/**
*
* @export
* @interface PtsV2PaymentsCapturesPost201Response
*/
export interface PtsV2PaymentsCapturesPost201Response {
/**
*
* @type {PtsV2PaymentsCapturesPost201ResponseLinks}
* @memberof PtsV2PaymentsCapturesPost201Response
*/
links?: PtsV2PaymentsCapturesPost201ResponseLinks;
/**
* 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 PtsV2PaymentsCapturesPost201Response
*/
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 PtsV2PaymentsCapturesPost201Response
*/
submitTimeUtc?: string;
/**
* The status of the submitted transaction. Possible values: - PENDING - TRANSMITTED (Only for Online Capture enabled merchants)
* @type {string}
* @memberof PtsV2PaymentsCapturesPost201Response
*/
status?: string;
/**
* 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 PtsV2PaymentsCapturesPost201Response
*/
reconciliationId?: string;
/**
*
* @type {PtsV2PaymentsVoidsPost201ResponseClientReferenceInformation}
* @memberof PtsV2PaymentsCapturesPost201Response
*/
clientReferenceInformation?: PtsV2PaymentsVoidsPost201ResponseClientReferenceInformation;
/**
*
* @type {PtsV2PaymentsCapturesPost201ResponseProcessorInformation}
* @memberof PtsV2PaymentsCapturesPost201Response
*/
processorInformation?: PtsV2PaymentsCapturesPost201ResponseProcessorInformation;
/**
*
* @type {PtsV2PaymentsCapturesPost201ResponseOrderInformation}
* @memberof PtsV2PaymentsCapturesPost201Response
*/
orderInformation?: PtsV2PaymentsCapturesPost201ResponseOrderInformation;
/**
*
* @type {PtsV2CapturesRefundsPost201ResponsePointOfSaleInformation}
* @memberof PtsV2PaymentsCapturesPost201Response
*/
pointOfSaleInformation?: PtsV2CapturesRefundsPost201ResponsePointOfSaleInformation;
/**
*
* @type {PtsV2PaymentsCapturesPost201ResponseProcessingInformation}
* @memberof PtsV2PaymentsCapturesPost201Response
*/
processingInformation?: PtsV2PaymentsCapturesPost201ResponseProcessingInformation;
}