/** * Finix API */ /** * The information of the initial onboarding link. This is only provided when creating an `onboarding_form`. */ export declare class CreateOnboardingFormRequestOnboardingLinkDetails { /** * How long (in minutes) the link should be valid for. Defaults to 60 minutes. */ 'expirationInMinutes'?: string; /** * 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](https://finix-hosted-content.s3.amazonaws.com/flex/v2/finix-terms-of-service.html). */ 'termsOfServiceUrl'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }