UNPKG

@paciolan/cybersource-sdk

Version:
37 lines (36 loc) 1.74 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. */ /** * * @export * @interface Ptsv2paymentsidcapturesProcessingInformationCaptureOptions */ export interface Ptsv2paymentsidcapturesProcessingInformationCaptureOptions { /** * 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 Ptsv2paymentsidcapturesProcessingInformationCaptureOptions */ captureSequenceNumber?: number; /** * 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 Ptsv2paymentsidcapturesProcessingInformationCaptureOptions */ totalCaptureCount?: number; /** * Indicates whether to release the authorization hold on the remaining funds. Possible Values: - `true` - `false` * @type {string} * @memberof Ptsv2paymentsidcapturesProcessingInformationCaptureOptions */ isFinal?: string; }