@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
38 lines (37 loc) • 907 B
TypeScript
import { NameLocation } from "./nameLocation";
export declare class MerchantData {
/**
* The unique identifier of the merchant\'s acquirer.
*/
"acquirerId"?: string;
/**
* The merchant category code.
*/
"mcc"?: string;
/**
* The unique identifier of the merchant.
*/
"merchantId"?: string;
"nameLocation"?: NameLocation | null;
/**
* The postal code of the merchant.
*/
"postalCode"?: 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();
}