/** * Finix API */ export declare class UpdateMerchantProfileRequest { /** * ID of the `fee_profile`. */ 'feeProfile'?: string; /** * ID of the `payout_profile`. */ 'payoutProfile'?: string; /** * ID of the `risk_profile`. */ 'riskProfile'?: string; /** * Key value pair for annotating custom meta data (e.g. order numbers). */ 'tags'?: { [key: string]: string; } | null; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }