@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
48 lines (47 loc) • 1.09 kB
TypeScript
export declare class TransferNotificationMerchantData {
/**
* The unique identifier of the merchant\'s acquirer.
*/
"acquirerId"?: string;
/**
* The city where the merchant is located.
*/
"city"?: string;
/**
* The country where the merchant is located.
*/
"country"?: string;
/**
* The merchant category code.
*/
"mcc"?: string;
/**
* The unique identifier of the merchant.
*/
"merchantId"?: string;
/**
* The name of the merchant\'s shop or service.
*/
"name"?: string;
/**
* The postal code of the merchant.
*/
"postalCode"?: string;
static readonly discriminator: string | undefined;
static readonly mapping: {
[]: 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();
}