Variable getAlertChannelsResponseSchemaConst
getAlertChannelsResponseSchema: ZodObject<
{
data: ZodArray<
ZodObject<
{
alerts: ZodArray<
ZodObject<
{ id: ZodInt; label: ZodString; type: ZodString; url: ZodString },
$strip,
>,
>;
channel_type: ZodEnum<{ email: "email" }>;
content: ZodObject<
{
email: ZodObject<{ email_addresses: ZodArray<ZodString> }, $strip>;
},
$strip,
>;
created: ZodISODateTime;
created_by: ZodString;
id: ZodInt;
label: ZodString;
type: ZodEnum<{ system: "system"; user: "user" }>;
updated: ZodISODateTime;
updated_by: ZodString;
},
$strip,
>,
>;
page: ZodReadonly<ZodInt>;
pages: ZodReadonly<ZodInt>;
results: ZodReadonly<ZodInt>;
},
$strip,
> = ...
Returns a paginated list of alerts channels.