Skip to content

Latest commit

 

History

History
150 lines (81 loc) · 4.15 KB

DeploymentHistoryDatabase.md

File metadata and controls

150 lines (81 loc) · 4.15 KB

DeploymentHistoryDatabase

Properties

Name Type Description Notes
Id string [readonly]
CreatedAt time.Time [readonly]
UpdatedAt Pointer to time.Time [optional] [readonly]
Name Pointer to string name of the service [optional]
Status Pointer to StateEnum [optional]

Methods

NewDeploymentHistoryDatabase

func NewDeploymentHistoryDatabase(id string, createdAt time.Time, ) *DeploymentHistoryDatabase

NewDeploymentHistoryDatabase instantiates a new DeploymentHistoryDatabase 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

NewDeploymentHistoryDatabaseWithDefaults

func NewDeploymentHistoryDatabaseWithDefaults() *DeploymentHistoryDatabase

NewDeploymentHistoryDatabaseWithDefaults instantiates a new DeploymentHistoryDatabase 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 *DeploymentHistoryDatabase) GetId() string

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

GetIdOk

func (o *DeploymentHistoryDatabase) 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 *DeploymentHistoryDatabase) SetId(v string)

SetId sets Id field to given value.

GetCreatedAt

func (o *DeploymentHistoryDatabase) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.

GetCreatedAtOk

func (o *DeploymentHistoryDatabase) GetCreatedAtOk() (*time.Time, bool)

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

SetCreatedAt

func (o *DeploymentHistoryDatabase) SetCreatedAt(v time.Time)

SetCreatedAt sets CreatedAt field to given value.

GetUpdatedAt

func (o *DeploymentHistoryDatabase) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field if non-nil, zero value otherwise.

GetUpdatedAtOk

func (o *DeploymentHistoryDatabase) GetUpdatedAtOk() (*time.Time, bool)

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

SetUpdatedAt

func (o *DeploymentHistoryDatabase) SetUpdatedAt(v time.Time)

SetUpdatedAt sets UpdatedAt field to given value.

HasUpdatedAt

func (o *DeploymentHistoryDatabase) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

GetName

func (o *DeploymentHistoryDatabase) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *DeploymentHistoryDatabase) GetNameOk() (*string, bool)

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

SetName

func (o *DeploymentHistoryDatabase) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *DeploymentHistoryDatabase) HasName() bool

HasName returns a boolean if a field has been set.

GetStatus

func (o *DeploymentHistoryDatabase) GetStatus() StateEnum

GetStatus returns the Status field if non-nil, zero value otherwise.

GetStatusOk

func (o *DeploymentHistoryDatabase) GetStatusOk() (*StateEnum, bool)

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

SetStatus

func (o *DeploymentHistoryDatabase) SetStatus(v StateEnum)

SetStatus sets Status field to given value.

HasStatus

func (o *DeploymentHistoryDatabase) HasStatus() bool

HasStatus returns a boolean if a field has been set.

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