@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
30 lines (29 loc) • 830 B
TypeScript
export declare class GetPciQuestionnaireResponse {
/**
* The generated questionnaire in a base64 encoded format.
*/
'content'?: string;
/**
* The date the questionnaire was created, in ISO 8601 extended format. For example, 2022-12-18T10:15:30+01:00
*/
'createdAt'?: Date;
/**
* The unique identifier of the signed questionnaire.
*/
'id'?: string;
/**
* The expiration date of the questionnaire, in ISO 8601 extended format. For example, 2022-12-18T10:15:30+01:00
*/
'validUntil'?: Date;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}