/** * 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 { ApikeyResourceSchema } from './ApikeyResourceSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; /** * * @export * @interface ApikeysSchema */ export interface ApikeysSchema { /** * * @type {Array} * @memberof ApikeysSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof ApikeysSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof ApikeysSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the ApikeysSchema interface. */ export declare function instanceOfApikeysSchema(value: object): value is ApikeysSchema; export declare function ApikeysSchemaFromJSON(json: any): ApikeysSchema; export declare function ApikeysSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApikeysSchema; export declare function ApikeysSchemaToJSON(json: any): ApikeysSchema; export declare function ApikeysSchemaToJSONTyped(value?: ApikeysSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ApikeysSchema.d.ts.map