/** * Permit.io API * Authorization as a service * * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Jwks } from './jwks'; /** * * @export * @interface EnvironmentUpdate */ export interface EnvironmentUpdate { /** * The name of the environment * @type {string} * @memberof EnvironmentUpdate */ name?: string; /** * an optional longer description of the environment * @type {string} * @memberof EnvironmentUpdate */ description?: string; /** * when using gitops feature, an optional branch name for the environment * @type {string} * @memberof EnvironmentUpdate */ custom_branch_name?: string; /** * * @type {Jwks} * @memberof EnvironmentUpdate */ jwks?: Jwks; }