@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
30 lines (29 loc) • 1.29 kB
TypeScript
export declare class GeneratePciDescriptionRequest {
/**
* An array of additional sales channels to generate PCI questionnaires. Include the relevant sales channels if you need your user to sign PCI questionnaires. Not required if you [create stores](https://docs.adyen.com/platforms) and [add payment methods](https://docs.adyen.com/adyen-for-platforms-model) before you generate the questionnaires. Possible values: * **eCommerce** * **pos** * **ecomMoto** * **posMoto**
*/
'additionalSalesChannels'?: Array<GeneratePciDescriptionRequest.AdditionalSalesChannelsEnum>;
/**
* Sets the language of the PCI questionnaire. Its value is a two-character [ISO 639-1](https://en.wikipedia.org/wiki/ISO_639-1) language code, for example, **en**.
*/
'language'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export declare namespace GeneratePciDescriptionRequest {
enum AdditionalSalesChannelsEnum {
ECommerce = "eCommerce",
EcomMoto = "ecomMoto",
Pos = "pos",
PosMoto = "posMoto"
}
}