UNPKG

@paciolan/cybersource-sdk

Version:
68 lines (67 loc) 2.04 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 { PtsV1TransactionBatchesIdGet200ResponseLinks } from './pts-v1-transaction-batches-id-get200-response-links'; /** * * @export * @interface PtsV1TransactionBatchesIdGet200Response */ export interface PtsV1TransactionBatchesIdGet200Response { /** * Unique identifier assigned to the batch file. * @type {string} * @memberof PtsV1TransactionBatchesIdGet200Response */ id?: string; /** * Date when the batch template was update. * @type {string} * @memberof PtsV1TransactionBatchesIdGet200Response */ uploadDate?: string; /** * The date when the batch template processing completed. * @type {string} * @memberof PtsV1TransactionBatchesIdGet200Response */ completionDate?: string; /** * Number of transactions in the transaction. * @type {number} * @memberof PtsV1TransactionBatchesIdGet200Response */ transactionCount?: number; /** * Number of transactions accepted. * @type {number} * @memberof PtsV1TransactionBatchesIdGet200Response */ acceptedTransactionCount?: number; /** * Number of transactions rejected. * @type {string} * @memberof PtsV1TransactionBatchesIdGet200Response */ rejectedTransactionCount?: string; /** * The status of you batch template processing. * @type {string} * @memberof PtsV1TransactionBatchesIdGet200Response */ status?: string; /** * * @type {PtsV1TransactionBatchesIdGet200ResponseLinks} * @memberof PtsV1TransactionBatchesIdGet200Response */ links?: PtsV1TransactionBatchesIdGet200ResponseLinks; }