/** * 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 { PersonaResourceSchema } from './PersonaResourceSchema'; /** * * @export * @interface PersonaSchema */ export interface PersonaSchema { /** * * @type {PersonaResourceSchema} * @memberof PersonaSchema */ data?: PersonaResourceSchema; /** * * @type {ResourceLinksSchema} * @memberof PersonaSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof PersonaSchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the PersonaSchema interface. */ export declare function instanceOfPersonaSchema(value: object): value is PersonaSchema; export declare function PersonaSchemaFromJSON(json: any): PersonaSchema; export declare function PersonaSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): PersonaSchema; export declare function PersonaSchemaToJSON(json: any): PersonaSchema; export declare function PersonaSchemaToJSONTyped(value?: PersonaSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PersonaSchema.d.ts.map