/** * 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 { UserRelationshipsApikeysSchema } from './UserRelationshipsApikeysSchema'; import type { UserRelationshipsJobsSchema } from './UserRelationshipsJobsSchema'; import type { UserRelationshipsRoleSchema } from './UserRelationshipsRoleSchema'; /** * * @export * @interface UserRelationshipsSchema */ export interface UserRelationshipsSchema { /** * * @type {UserRelationshipsRoleSchema} * @memberof UserRelationshipsSchema */ role?: UserRelationshipsRoleSchema; /** * * @type {UserRelationshipsJobsSchema} * @memberof UserRelationshipsSchema */ jobs?: UserRelationshipsJobsSchema; /** * * @type {UserRelationshipsApikeysSchema} * @memberof UserRelationshipsSchema */ apikeys?: UserRelationshipsApikeysSchema; } /** * Check if a given object implements the UserRelationshipsSchema interface. */ export declare function instanceOfUserRelationshipsSchema(value: object): value is UserRelationshipsSchema; export declare function UserRelationshipsSchemaFromJSON(json: any): UserRelationshipsSchema; export declare function UserRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserRelationshipsSchema; export declare function UserRelationshipsSchemaToJSON(json: any): UserRelationshipsSchema; export declare function UserRelationshipsSchemaToJSONTyped(value?: UserRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserRelationshipsSchema.d.ts.map