Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.17 KB

Database.md

File metadata and controls

134 lines (73 loc) · 3.17 KB

Database

Properties

Name Type Description Notes
Id Pointer to string [optional]
Label Pointer to string [optional]
StartTime Pointer to int64 [optional]
Tracked Pointer to bool [optional]

Methods

NewDatabase

func NewDatabase() *Database

NewDatabase instantiates a new Database 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

NewDatabaseWithDefaults

func NewDatabaseWithDefaults() *Database

NewDatabaseWithDefaults instantiates a new Database 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

GetId

func (o *Database) GetId() string

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *Database) GetIdOk() (*string, bool)

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

SetId

func (o *Database) SetId(v string)

SetId sets Id field to given value.

HasId

func (o *Database) HasId() bool

HasId returns a boolean if a field has been set.

GetLabel

func (o *Database) GetLabel() string

GetLabel returns the Label field if non-nil, zero value otherwise.

GetLabelOk

func (o *Database) GetLabelOk() (*string, bool)

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

SetLabel

func (o *Database) SetLabel(v string)

SetLabel sets Label field to given value.

HasLabel

func (o *Database) HasLabel() bool

HasLabel returns a boolean if a field has been set.

GetStartTime

func (o *Database) GetStartTime() int64

GetStartTime returns the StartTime field if non-nil, zero value otherwise.

GetStartTimeOk

func (o *Database) GetStartTimeOk() (*int64, bool)

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

SetStartTime

func (o *Database) SetStartTime(v int64)

SetStartTime sets StartTime field to given value.

HasStartTime

func (o *Database) HasStartTime() bool

HasStartTime returns a boolean if a field has been set.

GetTracked

func (o *Database) GetTracked() bool

GetTracked returns the Tracked field if non-nil, zero value otherwise.

GetTrackedOk

func (o *Database) GetTrackedOk() (*bool, bool)

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

SetTracked

func (o *Database) SetTracked(v bool)

SetTracked sets Tracked field to given value.

HasTracked

func (o *Database) HasTracked() bool

HasTracked returns a boolean if a field has been set.

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