Name | Type | Description | Notes |
---|---|---|---|
Lt | Pointer to time.Time | Include timestamps strictly less than lt. RFC3339 format, like `2006-01-02T15:04:05Z`. | [optional] |
Lte | Pointer to time.Time | Include timestamps less than or equal to lte. RFC3339 format, like `2006-01-02T15:04:05Z`. | [optional] |
Eq | Pointer to time.Time | Include timestamps exactly equal to eq. RFC3339 format, like `2006-01-02T15:04:05Z`. | [optional] |
Gte | Pointer to time.Time | Include timestamps greater than or equal to lte. RFC3339 format, like `2006-01-02T15:04:05Z`. | [optional] |
Gt | Pointer to time.Time | Include timestamps strictly greater than gt. RFC3339 format, like `2006-01-02T15:04:05Z`. | [optional] |
func NewTimestampFilter() *TimestampFilter
NewTimestampFilter instantiates a new TimestampFilter 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
func NewTimestampFilterWithDefaults() *TimestampFilter
NewTimestampFilterWithDefaults instantiates a new TimestampFilter 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
func (o *TimestampFilter) GetLt() time.Time
GetLt returns the Lt field if non-nil, zero value otherwise.
func (o *TimestampFilter) GetLtOk() (*time.Time, bool)
GetLtOk returns a tuple with the Lt field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TimestampFilter) SetLt(v time.Time)
SetLt sets Lt field to given value.
func (o *TimestampFilter) HasLt() bool
HasLt returns a boolean if a field has been set.
func (o *TimestampFilter) GetLte() time.Time
GetLte returns the Lte field if non-nil, zero value otherwise.
func (o *TimestampFilter) GetLteOk() (*time.Time, bool)
GetLteOk returns a tuple with the Lte field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TimestampFilter) SetLte(v time.Time)
SetLte sets Lte field to given value.
func (o *TimestampFilter) HasLte() bool
HasLte returns a boolean if a field has been set.
func (o *TimestampFilter) GetEq() time.Time
GetEq returns the Eq field if non-nil, zero value otherwise.
func (o *TimestampFilter) GetEqOk() (*time.Time, bool)
GetEqOk returns a tuple with the Eq field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TimestampFilter) SetEq(v time.Time)
SetEq sets Eq field to given value.
func (o *TimestampFilter) HasEq() bool
HasEq returns a boolean if a field has been set.
func (o *TimestampFilter) GetGte() time.Time
GetGte returns the Gte field if non-nil, zero value otherwise.
func (o *TimestampFilter) GetGteOk() (*time.Time, bool)
GetGteOk returns a tuple with the Gte field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TimestampFilter) SetGte(v time.Time)
SetGte sets Gte field to given value.
func (o *TimestampFilter) HasGte() bool
HasGte returns a boolean if a field has been set.
func (o *TimestampFilter) GetGt() time.Time
GetGt returns the Gt field if non-nil, zero value otherwise.
func (o *TimestampFilter) GetGtOk() (*time.Time, bool)
GetGtOk returns a tuple with the Gt field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TimestampFilter) SetGt(v time.Time)
SetGt sets Gt field to given value.
func (o *TimestampFilter) HasGt() bool
HasGt returns a boolean if a field has been set.