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