@apistudio/apim-cli
Version:
CLI for API Management Products
29 lines (23 loc) • 715 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: package/Product.proto
/* eslint-disable */
import { type Metadata } from "../common/Metadata.js";
import { type Ref } from "../common/Ref.js";
/** Copyright Super iPaaS Integration LLC, an IBM Company 2024 */
export interface Product {
kind?: string | undefined;
metadata?: Metadata | undefined;
spec?: Product_Spec | undefined;
kindEnum?: Product_KindEnums | undefined;
apiVersion?: string | undefined;
}
export enum Product_KindEnums {
Product = "Product",
}
export interface Product_Spec {
apis?: Ref[] | undefined;
plans?: Ref[] | undefined;
}