/** * 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 { CompleteUserIdentityLinkRequestData } from './CompleteUserIdentityLinkRequestData'; /** * * @export * @interface CompleteUserIdentityLinkRequest */ export interface CompleteUserIdentityLinkRequest { /** * * @type {CompleteUserIdentityLinkRequestData} * @memberof CompleteUserIdentityLinkRequest */ data?: CompleteUserIdentityLinkRequestData; } /** * Check if a given object implements the CompleteUserIdentityLinkRequest interface. */ export declare function instanceOfCompleteUserIdentityLinkRequest(value: object): value is CompleteUserIdentityLinkRequest; export declare function CompleteUserIdentityLinkRequestFromJSON(json: any): CompleteUserIdentityLinkRequest; export declare function CompleteUserIdentityLinkRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CompleteUserIdentityLinkRequest; export declare function CompleteUserIdentityLinkRequestToJSON(json: any): CompleteUserIdentityLinkRequest; export declare function CompleteUserIdentityLinkRequestToJSONTyped(value?: CompleteUserIdentityLinkRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CompleteUserIdentityLinkRequest.d.ts.map