@apistudio/apim-cli
Version:
CLI for API Management Products
19 lines • 647 B
TypeScript
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 declare enum Tuple_KindEnums {
Tuple = "Tuple"
}
/** The Spec is used to define the list of value */
export interface Tuple_Spec {
value?: string | undefined;
}
//# sourceMappingURL=Tuple.d.ts.map