/** * Finix API */ export declare class CreateOnboardingFormLinkRequest { /** * How long (in minutes) the link is valid for. */ 'expirationInMinutes'?: number; /** * The URL users get sent to if the bearer token expires. */ 'expiredSessionUrl'?: string; /** * The URL of the page where you display the fees related to processing payments (for more info, see [Displaying Processing Fees](/guides/onboarding/onboarding-form/#displaying-processing-fees)). */ 'feeDetailsUrl'?: string; /** * The URL users get sent to after completing the onboarding flow. */ 'returnUrl'?: string; /** * Your Terms of Service URL. The URL is provided to users for consent along with Finix\'s Terms of Service. */ 'termsOfServiceUrl'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }