/** * 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. */ /** * * @export * @interface CompleteUserIdentityLinkRequestDataAttributes */ export interface CompleteUserIdentityLinkRequestDataAttributes { /** * The authorization code the provider put in the redirect. * @type {string} * @memberof CompleteUserIdentityLinkRequestDataAttributes */ code: string; /** * Echoed back untouched from the redirect. It is the nonce. * @type {string} * @memberof CompleteUserIdentityLinkRequestDataAttributes */ state: string; } /** * Check if a given object implements the CompleteUserIdentityLinkRequestDataAttributes interface. */ export declare function instanceOfCompleteUserIdentityLinkRequestDataAttributes(value: object): value is CompleteUserIdentityLinkRequestDataAttributes; export declare function CompleteUserIdentityLinkRequestDataAttributesFromJSON(json: any): CompleteUserIdentityLinkRequestDataAttributes; export declare function CompleteUserIdentityLinkRequestDataAttributesFromJSONTyped(json: any, ignoreDiscriminator: boolean): CompleteUserIdentityLinkRequestDataAttributes; export declare function CompleteUserIdentityLinkRequestDataAttributesToJSON(json: any): CompleteUserIdentityLinkRequestDataAttributes; export declare function CompleteUserIdentityLinkRequestDataAttributesToJSONTyped(value?: CompleteUserIdentityLinkRequestDataAttributes | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CompleteUserIdentityLinkRequestDataAttributes.d.ts.map