/** * 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 { CreateApikeyRequestBodyData } from './CreateApikeyRequestBodyData'; /** * * @export * @interface CreateApikeyRequestBody */ export interface CreateApikeyRequestBody { /** * * @type {CreateApikeyRequestBodyData} * @memberof CreateApikeyRequestBody */ data: CreateApikeyRequestBodyData; } /** * Check if a given object implements the CreateApikeyRequestBody interface. */ export declare function instanceOfCreateApikeyRequestBody(value: object): value is CreateApikeyRequestBody; export declare function CreateApikeyRequestBodyFromJSON(json: any): CreateApikeyRequestBody; export declare function CreateApikeyRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateApikeyRequestBody; export declare function CreateApikeyRequestBodyToJSON(json: any): CreateApikeyRequestBody; export declare function CreateApikeyRequestBodyToJSONTyped(value?: CreateApikeyRequestBody | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateApikeyRequestBody.d.ts.map