@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
34 lines (33 loc) • 1.25 kB
TypeScript
export declare class SubMerchant {
/**
* The city of the sub-merchant\'s address. * Format: Alphanumeric * Maximum length: 13 characters
*/
'city'?: string;
/**
* The three-letter country code of the sub-merchant\'s address. For example, **BRA** for Brazil. * Format: [ISO 3166-1 alpha-3](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-3) * Fixed length: 3 characters
*/
'country'?: string;
/**
* The sub-merchant\'s 4-digit Merchant Category Code (MCC). * Format: Numeric * Fixed length: 4 digits
*/
'mcc'?: string;
/**
* The name of the sub-merchant. Based on scheme specifications, this value will overwrite the shopper statement that will appear in the card statement. * Format: Alphanumeric * Maximum length: 22 characters
*/
'name'?: string;
/**
* The tax ID of the sub-merchant. * Format: Numeric * Fixed length: 11 digits for the CPF or 14 digits for the CNPJ
*/
'taxId'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}