// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
// versions:
//   protoc-gen-ts_proto  v1.181.1
//   protoc               v3.12.4
// source: test/Environment.proto

/* eslint-disable */
import { type Metadata } from "../common/Metadata.js";
import { type Variable } from "./common/Variable.js";

/** Copyright Super iPaaS Integration LLC, an IBM Company 2024 */

/** The Environment related information for testing API is captured in the Assertion */
export interface Environment {
  kind?:
    | string
    | undefined;
  /** common metadata to identify a specific asset in the files */
  metadata?: Metadata | undefined;
  spec?: Environment_Spec | undefined;
  kindEnum?: Environment_KindEnums | undefined;
  apiVersion?: string | undefined;
}

/** Kind id supported for Environment sequence */
export enum Environment_KindEnums {
  Environment = "Environment",
}

export interface Environment_Spec {
  variables?: Variable[] | undefined;
}
