/** * 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 { ResourceLinksSchema } from './ResourceLinksSchema'; import type { RoleResourceSchema } from './RoleResourceSchema'; /** * * @export * @interface RoleSchema */ export interface RoleSchema { /** * * @type {RoleResourceSchema} * @memberof RoleSchema */ data?: RoleResourceSchema; /** * * @type {ResourceLinksSchema} * @memberof RoleSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof RoleSchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the RoleSchema interface. */ export declare function instanceOfRoleSchema(value: object): value is RoleSchema; export declare function RoleSchemaFromJSON(json: any): RoleSchema; export declare function RoleSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): RoleSchema; export declare function RoleSchemaToJSON(json: any): RoleSchema; export declare function RoleSchemaToJSONTyped(value?: RoleSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RoleSchema.d.ts.map