/** * 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 { UserRelationshipsSchema } from './UserRelationshipsSchema'; import type { UserAttributesSchema } from './UserAttributesSchema'; /** * * @export * @interface UserResourceSchema */ export interface UserResourceSchema { /** * * @type {UserResourceSchemaTypeEnum} * @memberof UserResourceSchema */ type: UserResourceSchemaTypeEnum; /** * 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 UserResourceSchema */ id: string; /** * * @type {UserAttributesSchema} * @memberof UserResourceSchema */ attributes: UserAttributesSchema; /** * * @type {UserRelationshipsSchema} * @memberof UserResourceSchema */ relationships?: UserRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof UserResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof UserResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const UserResourceSchemaTypeEnum: { readonly Users: "users"; }; export type UserResourceSchemaTypeEnum = typeof UserResourceSchemaTypeEnum[keyof typeof UserResourceSchemaTypeEnum]; /** * Check if a given object implements the UserResourceSchema interface. */ export declare function instanceOfUserResourceSchema(value: object): value is UserResourceSchema; export declare function UserResourceSchemaFromJSON(json: any): UserResourceSchema; export declare function UserResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserResourceSchema; export declare function UserResourceSchemaToJSON(json: any): UserResourceSchema; export declare function UserResourceSchemaToJSONTyped(value?: UserResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserResourceSchema.d.ts.map