/** * 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 { RoleRelationshipsPermissionsSchema } from './RoleRelationshipsPermissionsSchema'; import type { RoleRelationshipsUsersSchema } from './RoleRelationshipsUsersSchema'; /** * * @export * @interface RoleRelationshipsSchema */ export interface RoleRelationshipsSchema { /** * * @type {RoleRelationshipsUsersSchema} * @memberof RoleRelationshipsSchema */ users?: RoleRelationshipsUsersSchema; /** * * @type {RoleRelationshipsPermissionsSchema} * @memberof RoleRelationshipsSchema */ permissions?: RoleRelationshipsPermissionsSchema; } /** * Check if a given object implements the RoleRelationshipsSchema interface. */ export declare function instanceOfRoleRelationshipsSchema(value: object): value is RoleRelationshipsSchema; export declare function RoleRelationshipsSchemaFromJSON(json: any): RoleRelationshipsSchema; export declare function RoleRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): RoleRelationshipsSchema; export declare function RoleRelationshipsSchemaToJSON(json: any): RoleRelationshipsSchema; export declare function RoleRelationshipsSchemaToJSONTyped(value?: RoleRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RoleRelationshipsSchema.d.ts.map