import * as z from "zod"; export type GetNetworkPingmyipNotFoundDetails = {}; export declare const GetNetworkPingmyipNotFoundDetails$zodSchema: z.ZodType; /** * Ping操作失败。这很可能是因为你的路由器或防火墙禁止了外部ICMP Ping请求。 */ export type GetNetworkPingmyipNotFoundResponseBody = { code?: string | undefined; details?: GetNetworkPingmyipNotFoundDetails | undefined; message?: string | undefined; }; export declare const GetNetworkPingmyipNotFoundResponseBody$zodSchema: z.ZodType; export type GetNetworkPingmyipBadRequestDetails = {}; export declare const GetNetworkPingmyipBadRequestDetails$zodSchema: z.ZodType; /** * 无法获取客户端IP。 */ export type GetNetworkPingmyipBadRequestResponseBody = { code?: string | undefined; details?: GetNetworkPingmyipBadRequestDetails | undefined; message?: string | undefined; }; export declare const GetNetworkPingmyipBadRequestResponseBody$zodSchema: z.ZodType; /** * Ping 操作成功!返回到你客户端IP的延迟统计数据。 */ export type GetNetworkPingmyipResponseBody = { avg?: number | undefined; host?: string | undefined; ip?: string | undefined; location?: string | undefined; max?: number | undefined; min?: number | undefined; }; export declare const GetNetworkPingmyipResponseBody$zodSchema: z.ZodType; export type GetNetworkPingmyipResponse = GetNetworkPingmyipResponseBody | GetNetworkPingmyipBadRequestResponseBody | GetNetworkPingmyipNotFoundResponseBody; export declare const GetNetworkPingmyipResponse$zodSchema: z.ZodType; //# sourceMappingURL=getnetworkpingmyipop.d.ts.map