Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 3.14 KB

DataPointByTimestampParameters.md

File metadata and controls

82 lines (45 loc) · 3.14 KB

DataPointByTimestampParameters

Properties

Name Type Description Notes
Timestamp Pointer to time.Time The point in time from which to execute the operation. Mutually exclusive with timestamp_in_database_timezone. If the timestamp is not set, selects the latest point. [optional]
TimestampInDatabaseTimezone Pointer to string The point in time from which to execute the operation, expressed as a date-time in the timezone of the source database. Mutually exclusive with timestamp. [optional]

Methods

NewDataPointByTimestampParameters

func NewDataPointByTimestampParameters() *DataPointByTimestampParameters

NewDataPointByTimestampParameters instantiates a new DataPointByTimestampParameters 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

NewDataPointByTimestampParametersWithDefaults

func NewDataPointByTimestampParametersWithDefaults() *DataPointByTimestampParameters

NewDataPointByTimestampParametersWithDefaults instantiates a new DataPointByTimestampParameters 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

GetTimestamp

func (o *DataPointByTimestampParameters) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field if non-nil, zero value otherwise.

GetTimestampOk

func (o *DataPointByTimestampParameters) GetTimestampOk() (*time.Time, bool)

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

SetTimestamp

func (o *DataPointByTimestampParameters) SetTimestamp(v time.Time)

SetTimestamp sets Timestamp field to given value.

HasTimestamp

func (o *DataPointByTimestampParameters) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

GetTimestampInDatabaseTimezone

func (o *DataPointByTimestampParameters) GetTimestampInDatabaseTimezone() string

GetTimestampInDatabaseTimezone returns the TimestampInDatabaseTimezone field if non-nil, zero value otherwise.

GetTimestampInDatabaseTimezoneOk

func (o *DataPointByTimestampParameters) GetTimestampInDatabaseTimezoneOk() (*string, bool)

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

SetTimestampInDatabaseTimezone

func (o *DataPointByTimestampParameters) SetTimestampInDatabaseTimezone(v string)

SetTimestampInDatabaseTimezone sets TimestampInDatabaseTimezone field to given value.

HasTimestampInDatabaseTimezone

func (o *DataPointByTimestampParameters) HasTimestampInDatabaseTimezone() bool

HasTimestampInDatabaseTimezone returns a boolean if a field has been set.

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