/** * 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 { ResourceTimestampsSchema } from './ResourceTimestampsSchema'; /** * * @export * @interface RoleAttributesSchema */ export interface RoleAttributesSchema { /** * * @type {string} * @memberof RoleAttributesSchema */ name: string; /** * * @type {boolean} * @memberof RoleAttributesSchema */ isSystem?: boolean; /** * * @type {string} * @memberof RoleAttributesSchema */ status?: string; /** * * @type {ResourceTimestampsSchema} * @memberof RoleAttributesSchema */ timestamps?: ResourceTimestampsSchema; } /** * Check if a given object implements the RoleAttributesSchema interface. */ export declare function instanceOfRoleAttributesSchema(value: object): value is RoleAttributesSchema; export declare function RoleAttributesSchemaFromJSON(json: any): RoleAttributesSchema; export declare function RoleAttributesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): RoleAttributesSchema; export declare function RoleAttributesSchemaToJSON(json: any): RoleAttributesSchema; export declare function RoleAttributesSchemaToJSONTyped(value?: RoleAttributesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RoleAttributesSchema.d.ts.map