@igli.kokici/st-open-api
Version:
Generates API client SDKs from an OpenAPI specification written in OpenAPI version 3.x.x
16 lines (15 loc) • 410 B
TypeScript
import { IExternalDocumentation } from "./i-external-documentation";
export interface ITag {
/**
* REQUIRED. The name of the tag.
*/
name: string;
/**
* A short description for the tag. CommonMark syntax MAY be used for rich text representation.
*/
description?: string;
/**
* Additional external documentation.
*/
externalDocs?: IExternalDocumentation;
}