@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
32 lines (31 loc) • 985 B
TypeScript
export declare class GeneratePciDescriptionResponse {
/**
* The generated questionnaires in a base64 encoded format.
*/
"content"?: string;
/**
* The two-letter [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) language code for the questionnaire. For example, **en**.
*/
"language"?: string;
/**
* The array of Adyen-generated unique identifiers for the questionnaires. If empty, the user is not required to sign questionnaires.
*/
"pciTemplateReferences"?: Array<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();
}