Files
adyen-node-api-library/src/typings/checkout/paymentCaptureResource.ts
2022-10-28 16:28:50 +02:00

99 lines
3.1 KiB
TypeScript

/*
* The version of the OpenAPI document: v69
* Contact: developer-experience@adyen.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit this class manually.
*/
import { Amount } from './amount';
import { LineItem } from './lineItem';
import { Split } from './split';
export class PaymentCaptureResource {
'amount': Amount;
/**
* Price and product information of the captured items, required for [partial captures](https://docs.adyen.com/online-payments/capture#partial-capture). > This field is required for partial captures with 3x 4x Oney, Affirm, Afterpay, Clearpay, Klarna, Ratepay, Zip and Atome.
*/
'lineItems'?: Array<LineItem>;
/**
* The merchant account that is used to process the payment.
*/
'merchantAccount': string;
/**
* The [`pspReference`](https://docs.adyen.com/api-explorer/#/CheckoutService/latest/post/payments__resParam_pspReference) of the payment to capture.
*/
'paymentPspReference': string;
/**
* Adyen\'s 16-character reference associated with the capture request.
*/
'pspReference': string;
/**
* Your reference for the capture request.
*/
'reference'?: string;
/**
* An array of objects specifying how the amount should be split between accounts when using Adyen for Platforms. For details, refer to [Providing split information](https://docs.adyen.com/marketplaces-and-platforms/processing-payments#providing-split-information).
*/
'splits'?: Array<Split>;
/**
* The status of your request. This will always have the value **received**.
*/
'status': PaymentCaptureResource.StatusEnum;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "amount",
"baseName": "amount",
"type": "Amount"
},
{
"name": "lineItems",
"baseName": "lineItems",
"type": "Array<LineItem>"
},
{
"name": "merchantAccount",
"baseName": "merchantAccount",
"type": "string"
},
{
"name": "paymentPspReference",
"baseName": "paymentPspReference",
"type": "string"
},
{
"name": "pspReference",
"baseName": "pspReference",
"type": "string"
},
{
"name": "reference",
"baseName": "reference",
"type": "string"
},
{
"name": "splits",
"baseName": "splits",
"type": "Array<Split>"
},
{
"name": "status",
"baseName": "status",
"type": "PaymentCaptureResource.StatusEnum"
} ];
static getAttributeTypeMap() {
return PaymentCaptureResource.attributeTypeMap;
}
}
export namespace PaymentCaptureResource {
export enum StatusEnum {
Received = <any> 'received'
}
}