/** * OpenAPI definition * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface TenantCreate */ export interface TenantCreate { /** * * @type {string} * @memberof TenantCreate */ key?: string; /** * * @type {string} * @memberof TenantCreate */ name?: string; /** * * @type {string} * @memberof TenantCreate */ description?: string; /** * * @type {{ [key: string]: any; }} * @memberof TenantCreate */ attributes?: { [key: string]: any; }; } /** * Check if a given object implements the TenantCreate interface. */ export declare function instanceOfTenantCreate(value: object): value is TenantCreate; export declare function TenantCreateFromJSON(json: any): TenantCreate; export declare function TenantCreateFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantCreate; export declare function TenantCreateToJSON(json: any): TenantCreate; export declare function TenantCreateToJSONTyped(value?: TenantCreate | null, ignoreDiscriminator?: boolean): any;