/** * Apimatic APILib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { Server } from './server.js'; /** An environment consists of a set of servers with base URL values. The environment can be changed programatically allowing rapid switching between different environments. For example the user can specify a Production and Testing Environment and switch between them in the generated SDK. */ export interface MEnvironment { /** Unique Environment Identifier */ id: string; /** Environment Name */ name: string; /** The user can specify multiple servers within an environment. A server comprises of a name and a url. */ servers: Server[]; additionalProperties?: Record; } export declare const mEnvironmentSchema: Schema; //# sourceMappingURL=mEnvironment.d.ts.map