Skip to content
This repository has been archived by the owner on Apr 23, 2021. It is now read-only.

Latest commit

 

History

History
16 lines (10 loc) · 1.01 KB

DateRange.md

File metadata and controls

16 lines (10 loc) · 1.01 KB

DateRange

Description

A range defined by two dates. Used for filtering a query for Connect v2 objects that have date properties.

Properties

Name Getter Setter Type Description Notes
start_date getStartDate() setStartDate($value) string String in `YYYY-MM-DD` format, e.g. `2017-10-31` per the ISO 8601 extended format for calendar dates. The beginning of a date range (inclusive) [optional]
end_date getEndDate() setEndDate($value) string String in `YYYY-MM-DD` format, e.g. `2017-10-31` per the ISO 8601 extended format for calendar dates. The end of a date range (inclusive) [optional]

Note: All properties are protected and only accessed via getters and setters.

[Back to Model list] [Back to API list] [Back to README]