We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f08210b commit 46a3126Copy full SHA for 46a3126
src/resources/workflows/interfaces.ts
@@ -49,6 +49,7 @@ export interface CreateSchedulesProps {
49
recipients: (Recipient | RecipientWithUpsert)[];
50
actor?: Recipient | RecipientWithUpsert | null;
51
scheduled_at?: string;
52
+ ending_at?: string;
53
repeats?: ScheduleRepeatProperties[];
54
tenant?: Tenant | TenantWithUpsert | null;
55
data?: { [key: string]: any };
@@ -80,6 +81,7 @@ export interface Schedule {
80
81
inserted_at: string;
82
updated_at: string;
83
repeats: ScheduleRepeatProperties[];
84
+ ending_at?: string | null;
85
86
// only when paginating
87
__cursor?: string;
0 commit comments