@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
36 lines (35 loc) • 1.46 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 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 GeneratePciDescriptionRequest {
enum AdditionalSalesChannelsEnum {
ECommerce = "eCommerce",
EcomMoto = "ecomMoto",
Pos = "pos",
PosMoto = "posMoto"
}
}