@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
92 lines (91 loc) • 4.27 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 { PtsV2PaymentsVoidsPost201ResponseClientReferenceInformation } from './pts-v2-payments-voids-post201-response-client-reference-information';
import { PtsV2PaymentsVoidsPost201ResponseLinks } from './pts-v2-payments-voids-post201-response-links';
import { PtsV2ReversalsPost201ResponseAuthorizationInformation } from './pts-v2-reversals-post201-response-authorization-information';
import { PtsV2ReversalsPost201ResponseIssuerInformation } from './pts-v2-reversals-post201-response-issuer-information';
import { PtsV2ReversalsPost201ResponseProcessorInformation } from './pts-v2-reversals-post201-response-processor-information';
import { PtsV2ReversalsPost201ResponseReversalAmountDetails } from './pts-v2-reversals-post201-response-reversal-amount-details';
import { Ptsv2paymentsidreversalsPointOfSaleInformation } from './ptsv2paymentsidreversals-point-of-sale-information';
/**
*
* @export
* @interface PtsV2ReversalsPost201Response
*/
export interface PtsV2ReversalsPost201Response {
/**
*
* @type {PtsV2PaymentsVoidsPost201ResponseLinks}
* @memberof PtsV2ReversalsPost201Response
*/
links?: PtsV2PaymentsVoidsPost201ResponseLinks;
/**
* 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 PtsV2ReversalsPost201Response
*/
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 PtsV2ReversalsPost201Response
*/
submitTimeUtc?: string;
/**
* The status of the submitted transaction. Possible values: - REVERSED - PARTIALLY_REVERSED
* @type {string}
* @memberof PtsV2ReversalsPost201Response
*/
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 PtsV2ReversalsPost201Response
*/
reconciliationId?: string;
/**
*
* @type {PtsV2PaymentsVoidsPost201ResponseClientReferenceInformation}
* @memberof PtsV2ReversalsPost201Response
*/
clientReferenceInformation?: PtsV2PaymentsVoidsPost201ResponseClientReferenceInformation;
/**
*
* @type {PtsV2ReversalsPost201ResponseReversalAmountDetails}
* @memberof PtsV2ReversalsPost201Response
*/
reversalAmountDetails?: PtsV2ReversalsPost201ResponseReversalAmountDetails;
/**
*
* @type {PtsV2ReversalsPost201ResponseProcessorInformation}
* @memberof PtsV2ReversalsPost201Response
*/
processorInformation?: PtsV2ReversalsPost201ResponseProcessorInformation;
/**
*
* @type {PtsV2ReversalsPost201ResponseIssuerInformation}
* @memberof PtsV2ReversalsPost201Response
*/
issuerInformation?: PtsV2ReversalsPost201ResponseIssuerInformation;
/**
*
* @type {PtsV2ReversalsPost201ResponseAuthorizationInformation}
* @memberof PtsV2ReversalsPost201Response
*/
authorizationInformation?: PtsV2ReversalsPost201ResponseAuthorizationInformation;
/**
*
* @type {Ptsv2paymentsidreversalsPointOfSaleInformation}
* @memberof PtsV2ReversalsPost201Response
*/
pointOfSaleInformation?: Ptsv2paymentsidreversalsPointOfSaleInformation;
}