/** * 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 { UserRelationshipsRoleDataSchema } from './UserRelationshipsRoleDataSchema'; /** * * @export * @interface UserRelationshipsRoleSchema */ export interface UserRelationshipsRoleSchema { /** * * @type {UserRelationshipsRoleDataSchema} * @memberof UserRelationshipsRoleSchema */ data?: UserRelationshipsRoleDataSchema | null; } /** * Check if a given object implements the UserRelationshipsRoleSchema interface. */ export declare function instanceOfUserRelationshipsRoleSchema(value: object): value is UserRelationshipsRoleSchema; export declare function UserRelationshipsRoleSchemaFromJSON(json: any): UserRelationshipsRoleSchema; export declare function UserRelationshipsRoleSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserRelationshipsRoleSchema; export declare function UserRelationshipsRoleSchemaToJSON(json: any): UserRelationshipsRoleSchema; export declare function UserRelationshipsRoleSchemaToJSONTyped(value?: UserRelationshipsRoleSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserRelationshipsRoleSchema.d.ts.map