/** * 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 { IdentityLinkSchemaDataAttributes } from './IdentityLinkSchemaDataAttributes'; /** * * @export * @interface IdentityLinkSchemaData */ export interface IdentityLinkSchemaData { /** * * @type {string} * @memberof IdentityLinkSchemaData */ type?: string; /** * The user the link belongs to * @type {string} * @memberof IdentityLinkSchemaData */ id?: string; /** * * @type {IdentityLinkSchemaDataAttributes} * @memberof IdentityLinkSchemaData */ attributes?: IdentityLinkSchemaDataAttributes; } /** * Check if a given object implements the IdentityLinkSchemaData interface. */ export declare function instanceOfIdentityLinkSchemaData(value: object): value is IdentityLinkSchemaData; export declare function IdentityLinkSchemaDataFromJSON(json: any): IdentityLinkSchemaData; export declare function IdentityLinkSchemaDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): IdentityLinkSchemaData; export declare function IdentityLinkSchemaDataToJSON(json: any): IdentityLinkSchemaData; export declare function IdentityLinkSchemaDataToJSONTyped(value?: IdentityLinkSchemaData | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=IdentityLinkSchemaData.d.ts.map