UNPKG

@paciolan/cybersource-sdk

Version:
85 lines (84 loc) 4.07 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 { PtsV2CapturesRefundsPost201ResponseClientReferenceInformation } from './pts-v2-captures-refunds-post201-response-client-reference-information'; import { PtsV2CapturesRefundsPost201ResponseLinks } from './pts-v2-captures-refunds-post201-response-links'; import { PtsV2CapturesRefundsPost201ResponseOrderInformation } from './pts-v2-captures-refunds-post201-response-order-information'; import { PtsV2CapturesRefundsPost201ResponsePointOfSaleInformation } from './pts-v2-captures-refunds-post201-response-point-of-sale-information'; import { PtsV2CapturesRefundsPost201ResponseProcessorInformation } from './pts-v2-captures-refunds-post201-response-processor-information'; import { PtsV2CapturesRefundsPost201ResponseRefundAmountDetails } from './pts-v2-captures-refunds-post201-response-refund-amount-details'; /** * * @export * @interface PtsV2PaymentsRefundPost201Response */ export interface PtsV2PaymentsRefundPost201Response { /** * * @type {PtsV2CapturesRefundsPost201ResponseLinks} * @memberof PtsV2PaymentsRefundPost201Response */ links?: PtsV2CapturesRefundsPost201ResponseLinks; /** * 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 PtsV2PaymentsRefundPost201Response */ 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 PtsV2PaymentsRefundPost201Response */ submitTimeUtc?: string; /** * The status of the submitted transaction. Possible values: - PENDING * @type {string} * @memberof PtsV2PaymentsRefundPost201Response */ 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 PtsV2PaymentsRefundPost201Response */ reconciliationId?: string; /** * * @type {PtsV2CapturesRefundsPost201ResponseClientReferenceInformation} * @memberof PtsV2PaymentsRefundPost201Response */ clientReferenceInformation?: PtsV2CapturesRefundsPost201ResponseClientReferenceInformation; /** * * @type {PtsV2CapturesRefundsPost201ResponseRefundAmountDetails} * @memberof PtsV2PaymentsRefundPost201Response */ refundAmountDetails?: PtsV2CapturesRefundsPost201ResponseRefundAmountDetails; /** * * @type {PtsV2CapturesRefundsPost201ResponseProcessorInformation} * @memberof PtsV2PaymentsRefundPost201Response */ processorInformation?: PtsV2CapturesRefundsPost201ResponseProcessorInformation; /** * * @type {PtsV2CapturesRefundsPost201ResponseOrderInformation} * @memberof PtsV2PaymentsRefundPost201Response */ orderInformation?: PtsV2CapturesRefundsPost201ResponseOrderInformation; /** * * @type {PtsV2CapturesRefundsPost201ResponsePointOfSaleInformation} * @memberof PtsV2PaymentsRefundPost201Response */ pointOfSaleInformation?: PtsV2CapturesRefundsPost201ResponsePointOfSaleInformation; }