import { IPSOpenAPI3Object } from './ipsopen-api3-object'; /** * * @export * @interface IPSOpenAPI3Contact */ export interface IPSOpenAPI3Contact extends IPSOpenAPI3Object { /** * 联系人电子邮件地址 * @type {string} */ email: string; /** * 联系人URL地址 * @type {string} */ url: string; }