@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
44 lines (43 loc) • 1.11 kB
TypeScript
export declare class KlarnaInfo {
/**
* Indicates the status of [Automatic capture](https://docs.adyen.com/online-payments/capture#automatic-capture). Default value: **false**.
*/
"autoCapture"?: boolean;
/**
* The email address for disputes.
*/
"disputeEmail": string;
/**
* The region of operation. For example, **NA**, **EU**, **CH**, **AU**.
*/
"region": KlarnaInfo.RegionEnum;
/**
* The email address of merchant support.
*/
"supportEmail": string;
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 KlarnaInfo {
enum RegionEnum {
Na = "NA",
Eu = "EU",
Ch = "CH",
Au = "AU"
}
}