apim-developer-portal1
Version:
API management developer portal
28 lines (19 loc) • 446 B
text/typescript
import { TagContract } from "./tag";
export interface ApiTagDescriptionContract {
/**
* Example: /apiTagDescriptions/DCD501300701F346BA206320
*/
id: string;
/**
* Example: /apis/echo-api
*/
apiId: string;
/**
* Example: /tags/34CB3A8E1F77FB46BFD268E9
*/
tagId: string;
description: string;
externalDocsDescription: string;
externalDocsUrl: string;
tag: TagContract;
}