@apistudio/apim-cli
Version:
CLI for API Management Products
44 lines (36 loc) • 1.04 kB
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/Plan.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 Plan {
kind?:
| string
| undefined;
/** common metadata to identify a specific asset in the files */
metadata?: Metadata | undefined;
spec?: Plan_Spec | undefined;
kindEnum?: Plan_KindEnums | undefined;
apiVersion?: string | undefined;
}
export enum Plan_KindEnums {
Plan = "Plan",
}
export interface Plan_Pricing {
currency?: string | undefined;
value?: number | undefined;
}
export interface Plan_Qos {
withQuota?: Ref | undefined;
withRateLimit?: Ref[] | undefined;
}
export interface Plan_Spec {
pricing?: Plan_Pricing | undefined;
terms?: string | undefined;
license?: string | undefined;
qos?: Plan_Qos | undefined;
}