@apistudio/apim-cli
Version:
CLI for API Management Products
32 lines (26 loc) • 787 B
text/typescript
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
// versions:
// protoc-gen-ts_proto v2.6.1
// protoc v3.17.1
// 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;
}