/** * 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 { ApikeyResourceSchema } from './ApikeyResourceSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; /** * * @export * @interface ApikeySchema */ export interface ApikeySchema { /** * * @type {ApikeyResourceSchema} * @memberof ApikeySchema */ data?: ApikeyResourceSchema; /** * * @type {ResourceLinksSchema} * @memberof ApikeySchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof ApikeySchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the ApikeySchema interface. */ export declare function instanceOfApikeySchema(value: object): value is ApikeySchema; export declare function ApikeySchemaFromJSON(json: any): ApikeySchema; export declare function ApikeySchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApikeySchema; export declare function ApikeySchemaToJSON(json: any): ApikeySchema; export declare function ApikeySchemaToJSONTyped(value?: ApikeySchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ApikeySchema.d.ts.map