import type { RequestMethod } from "../../../types/RequestMethod"; import type { MetaRoleType } from "./MetaRoleType"; export interface MetadataApiSpecInfo { readonly doc_url: string; readonly name: string; readonly title: string; readonly role: MetaRoleType[]; readonly method: RequestMethod; readonly endpoint: string; readonly deprecated: boolean; readonly entity_path: string; }