/** * 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 { UserInvitationAttributesSchema } from './UserInvitationAttributesSchema'; /** * * @export * @interface UserInvitationDataSchema */ export interface UserInvitationDataSchema { /** * * @type {string} * @memberof UserInvitationDataSchema */ type?: string; /** * The userId the invitation was re-sent for * @type {string} * @memberof UserInvitationDataSchema */ id?: string; /** * * @type {UserInvitationAttributesSchema} * @memberof UserInvitationDataSchema */ attributes?: UserInvitationAttributesSchema; } /** * Check if a given object implements the UserInvitationDataSchema interface. */ export declare function instanceOfUserInvitationDataSchema(value: object): value is UserInvitationDataSchema; export declare function UserInvitationDataSchemaFromJSON(json: any): UserInvitationDataSchema; export declare function UserInvitationDataSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserInvitationDataSchema; export declare function UserInvitationDataSchemaToJSON(json: any): UserInvitationDataSchema; export declare function UserInvitationDataSchemaToJSONTyped(value?: UserInvitationDataSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserInvitationDataSchema.d.ts.map