Skip to main content
Version: v30.0.x

Type Alias: ModifyOfferingTimesParams

ModifyOfferingTimesParams = { end: Date | null; start?: Date; } | { end?: Date | null; start: Date; } | { end: Date | null; start: Date; }

Defined in: src/api/procedures/types.ts:1758

Union Members

Type Literal

{ end: Date | null; start?: Date; }

NameTypeDescriptionDefined in

end

Date | null

new end time (optional, will be left th same if not passed). A null value means the Offering doesn't end

src/api/procedures/types.ts:1767

start?

Date

new start time (optional, will be left the same if not passed)

src/api/procedures/types.ts:1763


Type Literal

{ end?: Date | null; start: Date; }


Type Literal

{ end: Date | null; start: Date; }