@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
36 lines (35 loc) • 1.07 kB
TypeScript
export declare class ConfirmationTrackingData {
/**
* The status of the transfer. Possible values: - **credited**: the funds are credited to your user\'s transfer instrument or bank account.
*/
"status": ConfirmationTrackingData.StatusEnum;
/**
* The type of the tracking event. Possible values: - **confirmation**: the transfer passed Adyen\'s internal review.
*/
"type": ConfirmationTrackingData.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 ConfirmationTrackingData {
enum StatusEnum {
Credited = "credited"
}
enum TypeEnum {
Confirmation = "confirmation"
}
}