/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { StartUserIdentityLinkRequestData } from './StartUserIdentityLinkRequestData'; /** * * @export * @interface StartUserIdentityLinkRequest */ export interface StartUserIdentityLinkRequest { /** * * @type {StartUserIdentityLinkRequestData} * @memberof StartUserIdentityLinkRequest */ data?: StartUserIdentityLinkRequestData; } /** * Check if a given object implements the StartUserIdentityLinkRequest interface. */ export declare function instanceOfStartUserIdentityLinkRequest(value: object): value is StartUserIdentityLinkRequest; export declare function StartUserIdentityLinkRequestFromJSON(json: any): StartUserIdentityLinkRequest; export declare function StartUserIdentityLinkRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): StartUserIdentityLinkRequest; export declare function StartUserIdentityLinkRequestToJSON(json: any): StartUserIdentityLinkRequest; export declare function StartUserIdentityLinkRequestToJSONTyped(value?: StartUserIdentityLinkRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=StartUserIdentityLinkRequest.d.ts.map