UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

25 lines 1.02 kB
import { type Metadata } from "../../common/Metadata.js"; /** Copyright Super iPaaS Integration LLC, an IBM Company 2024 */ /** The CustomHttpHeader related information is captured in the message CustomHttpHeader. */ export interface CustomHttpHeader { kind?: string | undefined; apiVersion?: string | undefined; /** common metadata to identify a specific asset in the files */ metadata?: Metadata | undefined; kindEnum?: CustomHttpHeader_KindEnums | undefined; spec?: CustomHttpHeader_Spec | undefined; } /** Kind id supported for CustomHttpHeader */ export declare enum CustomHttpHeader_KindEnums { CustomHttpHeader = "CustomHttpHeader" } /** message property includes key and value */ export interface CustomHttpHeader_Property { key?: string | undefined; value?: string | undefined; } /** The Spec is used to define the properties */ export interface CustomHttpHeader_Spec { property?: CustomHttpHeader_Property[] | undefined; } //# sourceMappingURL=CustomHttpHeader.d.ts.map