Variable UpdateImportScheduleSchemaConst
UpdateImportScheduleSchema: ZodObject<
{
callbackUrl: ZodOptional<ZodNullable<ZodURL>>;
importScheduleId: ZodString;
importSourceId: ZodString;
runInterval: ZodCustom<
string & {}
| "ONCE"
| "DAILY"
| "WEEKLY"
| "MONTHLY",
string & {} | "ONCE" | "DAILY" | "WEEKLY" | "MONTHLY",
>;
startTime: ZodCoercedDate<unknown>;
},
$strip,
> = ...