/** * 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. */ import type { EnvironmentSettings } from './EnvironmentSettings.js'; /** * * @export * @interface EnvironmentUpsert */ export interface EnvironmentUpsert { /** * * @type {string} * @memberof EnvironmentUpsert */ key?: string; /** * * @type {string} * @memberof EnvironmentUpsert */ name?: string; /** * * @type {string} * @memberof EnvironmentUpsert */ description?: string; /** * * @type {EnvironmentSettings} * @memberof EnvironmentUpsert */ settings?: EnvironmentSettings; } /** * Check if a given object implements the EnvironmentUpsert interface. */ export declare function instanceOfEnvironmentUpsert(value: object): value is EnvironmentUpsert; export declare function EnvironmentUpsertFromJSON(json: any): EnvironmentUpsert; export declare function EnvironmentUpsertFromJSONTyped(json: any, ignoreDiscriminator: boolean): EnvironmentUpsert; export declare function EnvironmentUpsertToJSON(json: any): EnvironmentUpsert; export declare function EnvironmentUpsertToJSONTyped(value?: EnvironmentUpsert | null, ignoreDiscriminator?: boolean): any;