/** * Finix API */ export declare class OnboardingFormLink { /** * A UTC timestamp detailing when the onboarding form expires and will no longer be available via `link_url`. To generate a new link to the same form, see [Get an Onboarding Form URL](/guides/onboarding/onboarding-form/#get-an-onboarding-form-url). */ 'expiresAt'?: string; /** * The URL of the user\'s Finix Onboarding Form. Users can use the `link_url` to return to the form at any time. */ 'linkUrl'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }