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

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

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

export interface Tuple {
  kind?:
    | string
    | undefined;
  /** common metadata to identify a specific asset in the files */
  metadata?: Metadata | undefined;
  spec?: Tuple_Spec | undefined;
  kindEnum?: Tuple_KindEnums | undefined;
  apiVersion?: string | undefined;
}

/** Kind id supported for scope */
export enum Tuple_KindEnums {
  Tuple = "Tuple",
}

/** The Spec is used to define the list of value */
export interface Tuple_Spec {
  value?: string | undefined;
}
