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(); }