Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.12 KB

DateRange.md

File metadata and controls

82 lines (45 loc) · 2.12 KB

DateRange

Properties

Name Type Description Notes
StartDate Pointer to string [optional]
EndDate Pointer to string [optional]

Methods

NewDateRange

func NewDateRange() *DateRange

NewDateRange instantiates a new DateRange object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewDateRangeWithDefaults

func NewDateRangeWithDefaults() *DateRange

NewDateRangeWithDefaults instantiates a new DateRange object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetStartDate

func (o *DateRange) GetStartDate() string

GetStartDate returns the StartDate field if non-nil, zero value otherwise.

GetStartDateOk

func (o *DateRange) GetStartDateOk() (*string, bool)

GetStartDateOk returns a tuple with the StartDate field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetStartDate

func (o *DateRange) SetStartDate(v string)

SetStartDate sets StartDate field to given value.

HasStartDate

func (o *DateRange) HasStartDate() bool

HasStartDate returns a boolean if a field has been set.

GetEndDate

func (o *DateRange) GetEndDate() string

GetEndDate returns the EndDate field if non-nil, zero value otherwise.

GetEndDateOk

func (o *DateRange) GetEndDateOk() (*string, bool)

GetEndDateOk returns a tuple with the EndDate field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetEndDate

func (o *DateRange) SetEndDate(v string)

SetEndDate sets EndDate field to given value.

HasEndDate

func (o *DateRange) HasEndDate() bool

HasEndDate returns a boolean if a field has been set.

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