Variable getDomainsResponseSchemaConst
getDomainsResponseSchema: ZodObject<
{
data: ZodArray<
ZodObject<
{
axfr_ips: ZodArray<ZodString>;
description: ZodUnion<readonly [ZodString, ZodNull]>;
domain: ZodString;
expire_sec: ZodDefault<ZodInt>;
group: ZodUnion<readonly [ZodString, ZodNull]>;
id: ZodReadonly<ZodInt>;
master_ips: ZodArray<ZodString>;
refresh_sec: ZodDefault<ZodInt>;
retry_sec: ZodDefault<ZodInt>;
soa_email: ZodEmail;
status: ZodEnum<{ active: "active"; disabled: "disabled" }>;
tags: ZodArray<ZodString>;
ttl_sec: ZodDefault<ZodInt>;
type: ZodEnum<{ master: "master"; slave: "slave" }>;
},
$strip,
>,
>;
page: ZodReadonly<ZodInt>;
pages: ZodReadonly<ZodInt>;
results: ZodReadonly<ZodInt>;
},
$strip,
> = ...
A paginated list of Domains you have registered.