/** * 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 { PersonaAttributesSchema } from './PersonaAttributesSchema'; import type { PersonaRelationshipsSchema } from './PersonaRelationshipsSchema'; /** * * @export * @interface PersonaResourceSchema */ export interface PersonaResourceSchema { /** * * @type {PersonaResourceSchemaTypeEnum} * @memberof PersonaResourceSchema */ type: PersonaResourceSchemaTypeEnum; /** * 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 PersonaResourceSchema */ id: string; /** * * @type {PersonaAttributesSchema} * @memberof PersonaResourceSchema */ attributes: PersonaAttributesSchema; /** * * @type {PersonaRelationshipsSchema} * @memberof PersonaResourceSchema */ relationships?: PersonaRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof PersonaResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof PersonaResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const PersonaResourceSchemaTypeEnum: { readonly Personas: "personas"; }; export type PersonaResourceSchemaTypeEnum = typeof PersonaResourceSchemaTypeEnum[keyof typeof PersonaResourceSchemaTypeEnum]; /** * Check if a given object implements the PersonaResourceSchema interface. */ export declare function instanceOfPersonaResourceSchema(value: object): value is PersonaResourceSchema; export declare function PersonaResourceSchemaFromJSON(json: any): PersonaResourceSchema; export declare function PersonaResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): PersonaResourceSchema; export declare function PersonaResourceSchemaToJSON(json: any): PersonaResourceSchema; export declare function PersonaResourceSchemaToJSONTyped(value?: PersonaResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PersonaResourceSchema.d.ts.map