/** * Finix API */ import { MerchantProfileLinks } from './merchantProfileLinks'; /** * */ export declare class MerchantProfile { /** * The ID of the `Merchant Profile` resource. */ 'id'?: string; /** * Timestamp of when the object was created. */ 'createdAt'?: Date; /** * Timestamp of when the object was last updated. */ 'updatedAt'?: Date; /** * The ID of the `Application` associated with the `Merchant Profile`. */ 'application'?: string; /** * The ID of the `Fee Profile` associated with the `Merchant Profile` resource. */ 'feeProfile'?: string | null; /** * The ID of the `Payout Profile` associated with the `Merchant Profile` resource. */ 'payoutProfile'?: string | null; /** * The ID of the `Risk Profile` associated with the `Merchant Profile` resource. */ 'riskProfile'?: string | null; /** * Key value pair for annotating custom meta data (e.g. order numbers). */ 'tags'?: { [key: string]: string; } | null; 'links'?: MerchantProfileLinks; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }