@paciolan/cybersource-sdk
Version:
CyberSource REST API Typescript SDK
31 lines (30 loc) • 1.51 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.
*/
/**
*
* @export
* @interface TssV2TransactionsGet200ResponseProcessingInformationCaptureOptions
*/
export interface TssV2TransactionsGet200ResponseProcessingInformationCaptureOptions {
/**
* Total number of captures when requesting multiple partial captures for one payment. Used along with `captureSequenceNumber` field to track which capture is being processed. For example, the second of five captures would be passed to CyberSource as: - `captureSequenceNumber = 2`, and - `totalCaptureCount = 5`
* @type {number}
* @memberof TssV2TransactionsGet200ResponseProcessingInformationCaptureOptions
*/
totalCaptureCount?: number;
/**
* Capture number when requesting multiple partial captures for one authorization. Used along with `totalCaptureCount` to track which capture is being processed. For example, the second of five captures would be passed to CyberSource as: - `captureSequenceNumber_ = 2`, and - `totalCaptureCount = 5`
* @type {number}
* @memberof TssV2TransactionsGet200ResponseProcessingInformationCaptureOptions
*/
captureSequenceNumber?: number;
}