/** * 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 { RoleAttributesSchema } from './RoleAttributesSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; import type { RoleRelationshipsSchema } from './RoleRelationshipsSchema'; /** * * @export * @interface RoleResourceSchema */ export interface RoleResourceSchema { /** * * @type {RoleResourceSchemaTypeEnum} * @memberof RoleResourceSchema */ type: RoleResourceSchemaTypeEnum; /** * Returns results with an ID greater than the specified ID. The ID is a combination of a UUID4 (hexadecimal) followed by a hyphen and an integer number from 1 to 9. * @type {string} * @memberof RoleResourceSchema */ id: string; /** * * @type {RoleAttributesSchema} * @memberof RoleResourceSchema */ attributes: RoleAttributesSchema; /** * * @type {RoleRelationshipsSchema} * @memberof RoleResourceSchema */ relationships?: RoleRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof RoleResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof RoleResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const RoleResourceSchemaTypeEnum: { readonly Roles: "roles"; }; export type RoleResourceSchemaTypeEnum = typeof RoleResourceSchemaTypeEnum[keyof typeof RoleResourceSchemaTypeEnum]; /** * Check if a given object implements the RoleResourceSchema interface. */ export declare function instanceOfRoleResourceSchema(value: object): value is RoleResourceSchema; export declare function RoleResourceSchemaFromJSON(json: any): RoleResourceSchema; export declare function RoleResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): RoleResourceSchema; export declare function RoleResourceSchemaToJSON(json: any): RoleResourceSchema; export declare function RoleResourceSchemaToJSONTyped(value?: RoleResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RoleResourceSchema.d.ts.map