@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
36 lines (35 loc) • 1.1 kB
TypeScript
import { Amount } from "./amount";
export declare class CashOutTransfer {
"amount": Amount;
/**
* The reference of the cashout transfer.
*/
"id": string;
/**
* The type of the cashout transfer. Possible values: - **cashoutRepayment**: Corresponds to the transfer created to deduct the cashout amount after settlement. - **cashoutFee**: Corresponds to the transfer created to debit the cashout fee form the user\'s balance account.
*/
"type": CashOutTransfer.TypeEnum;
static readonly discriminator: string | undefined;
static readonly mapping: {
[index: string]: string;
} | undefined;
static readonly attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
format: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
format: string;
}[];
constructor();
}
export declare namespace CashOutTransfer {
enum TypeEnum {
CashoutRepayment = "cashoutRepayment",
CashoutFee = "cashoutFee"
}
}