/** * Finix API */ import { IdentityEntityForm } from './identityEntityForm'; export declare class CreateApplicationRequest { 'entity'?: IdentityEntityForm; /** * Maximum amount that can be processed for a single transaction in cents (max 12 characters). */ 'maxTransactionAmount'?: number | null; /** * Merchant\'s full legal business name (If **INDIVIDUAL_SOLE_PROPRIETORSHIP**, enter first name, Full legal last name and middle initial; max 120 characters). */ 'name'?: string | null; /** * Key value pair for annotating custom meta data (e.g. order numbers). */ 'tags'?: { [key: string]: string; } | null; /** * ID of the `User` resource. */ 'user': string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }