/** * Finix API */ /** * The prefilled information of the user that\'s being onboarding. See [Prefilling Fields](/guides/onboarding/onboarding-form/). */ export declare class OnboardingFormOnboardingData { /** * Additional underwriting data about the user. */ 'additionalUnderwritingData'?: object; /** * The `entities` saved in the `associated_identities` of the user. For more information, see [Create an Associated Identity](/api/#operation/createAssociatedIdentity). */ 'associatedEntities'?: Array; /** * The `entity` information saved in the `Identity` of the user. */ 'entity'?: object; /** * Maximum amount that can be transacted for a single transaction in cents (max 12 characters). Must be equal to or less than your `max_transaction_amount`. */ 'maxTransactionAmount'?: number; /** * The `Payment Instrument` that\'ll be used to payout the user. For more information, see [Payouts](/guides/payouts). */ 'paymentInstruments'?: object; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }