/** * Finix API */ import { ApplicationProfileLinks } from './applicationProfileLinks'; export declare class ApplicationProfile { /** * ID of the `application_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` resource. */ 'application'?: string; /** * The ID of the `Fee Profile` associated with the `Application`. */ 'feeProfile'?: string | null; /** * The ID of the `risk_profile` that was created during provisioning. */ 'riskProfile'?: string; /** * Key value pair for annotating custom meta data (e.g. order numbers). */ 'tags'?: { [key: string]: string; } | null; 'links'?: ApplicationProfileLinks; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }