import { IPSOpenAPI3Object } from './ipsopen-api3-object'; /** * * @export * @interface IPSOpenAPI3Info */ export interface IPSOpenAPI3Info extends IPSOpenAPI3Object { /** * 版本 * @type {string} */ aPIVersion: string; /** * 服务条款路径 * @type {string} */ termsOfService: string; /** * 抬头 * @type {string} */ title: string; }