/** * 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 { ResourcesMetaSchema } from './ResourcesMetaSchema'; import type { PersonaResourceSchema } from './PersonaResourceSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; /** * * @export * @interface PersonasSchema */ export interface PersonasSchema { /** * * @type {Array} * @memberof PersonasSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof PersonasSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof PersonasSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the PersonasSchema interface. */ export declare function instanceOfPersonasSchema(value: object): value is PersonasSchema; export declare function PersonasSchemaFromJSON(json: any): PersonasSchema; export declare function PersonasSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): PersonasSchema; export declare function PersonasSchemaToJSON(json: any): PersonasSchema; export declare function PersonasSchemaToJSONTyped(value?: PersonasSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PersonasSchema.d.ts.map