/** * 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 { ResourceTimestampsSchema } from './ResourceTimestampsSchema'; /** * * @export * @interface ApikeyAttributesSchema */ export interface ApikeyAttributesSchema { /** * * @type {string} * @memberof ApikeyAttributesSchema */ name: string; /** * * @type {string} * @memberof ApikeyAttributesSchema */ status?: string; /** * * @type {ResourceTimestampsSchema} * @memberof ApikeyAttributesSchema */ timestamps?: ResourceTimestampsSchema; } /** * Check if a given object implements the ApikeyAttributesSchema interface. */ export declare function instanceOfApikeyAttributesSchema(value: object): value is ApikeyAttributesSchema; export declare function ApikeyAttributesSchemaFromJSON(json: any): ApikeyAttributesSchema; export declare function ApikeyAttributesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApikeyAttributesSchema; export declare function ApikeyAttributesSchemaToJSON(json: any): ApikeyAttributesSchema; export declare function ApikeyAttributesSchemaToJSONTyped(value?: ApikeyAttributesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ApikeyAttributesSchema.d.ts.map