/** * Finix API */ export declare class UpdateApplicationProfileRequest { /** * The ID of the `Fee Profile` associated with the `Application`. */ 'feeProfile'?: object; /** * The ID of the `Fee Profile` associated with the `Application`. */ 'riskProfile'?: object; /** * 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; }[]; }