/** * 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 { ApikeyRelationshipsUsersSchema } from './ApikeyRelationshipsUsersSchema'; /** * * @export * @interface ApikeyRelationshipsSchema */ export interface ApikeyRelationshipsSchema { /** * * @type {ApikeyRelationshipsUsersSchema} * @memberof ApikeyRelationshipsSchema */ users?: ApikeyRelationshipsUsersSchema; } /** * Check if a given object implements the ApikeyRelationshipsSchema interface. */ export declare function instanceOfApikeyRelationshipsSchema(value: object): value is ApikeyRelationshipsSchema; export declare function ApikeyRelationshipsSchemaFromJSON(json: any): ApikeyRelationshipsSchema; export declare function ApikeyRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApikeyRelationshipsSchema; export declare function ApikeyRelationshipsSchemaToJSON(json: any): ApikeyRelationshipsSchema; export declare function ApikeyRelationshipsSchemaToJSONTyped(value?: ApikeyRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ApikeyRelationshipsSchema.d.ts.map