/** * 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 { ApikeyAttributesSchema } from './ApikeyAttributesSchema'; import type { ApikeyRelationshipsSchema } from './ApikeyRelationshipsSchema'; /** * * @export * @interface ApikeyResourceSchema */ export interface ApikeyResourceSchema { /** * * @type {ApikeyResourceSchemaTypeEnum} * @memberof ApikeyResourceSchema */ type: ApikeyResourceSchemaTypeEnum; /** * 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 ApikeyResourceSchema */ id: string; /** * * @type {ApikeyAttributesSchema} * @memberof ApikeyResourceSchema */ attributes: ApikeyAttributesSchema; /** * * @type {ApikeyRelationshipsSchema} * @memberof ApikeyResourceSchema */ relationships?: ApikeyRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof ApikeyResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof ApikeyResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const ApikeyResourceSchemaTypeEnum: { readonly Apikeys: "apikeys"; }; export type ApikeyResourceSchemaTypeEnum = typeof ApikeyResourceSchemaTypeEnum[keyof typeof ApikeyResourceSchemaTypeEnum]; /** * Check if a given object implements the ApikeyResourceSchema interface. */ export declare function instanceOfApikeyResourceSchema(value: object): value is ApikeyResourceSchema; export declare function ApikeyResourceSchemaFromJSON(json: any): ApikeyResourceSchema; export declare function ApikeyResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApikeyResourceSchema; export declare function ApikeyResourceSchemaToJSON(json: any): ApikeyResourceSchema; export declare function ApikeyResourceSchemaToJSONTyped(value?: ApikeyResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ApikeyResourceSchema.d.ts.map