Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.45 KB

Version.md

File metadata and controls

134 lines (73 loc) · 3.45 KB

Version

Properties

Name Type Description Notes
BuildNotes Pointer to string Build notes [optional]
BuildTag Pointer to string Build tag [optional]
BuildTimestamp Pointer to string Build timestamp [optional]
Version Pointer to string Version [optional]

Methods

NewVersion

func NewVersion() *Version

NewVersion instantiates a new Version 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

NewVersionWithDefaults

func NewVersionWithDefaults() *Version

NewVersionWithDefaults instantiates a new Version 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

GetBuildNotes

func (o *Version) GetBuildNotes() string

GetBuildNotes returns the BuildNotes field if non-nil, zero value otherwise.

GetBuildNotesOk

func (o *Version) GetBuildNotesOk() (*string, bool)

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

SetBuildNotes

func (o *Version) SetBuildNotes(v string)

SetBuildNotes sets BuildNotes field to given value.

HasBuildNotes

func (o *Version) HasBuildNotes() bool

HasBuildNotes returns a boolean if a field has been set.

GetBuildTag

func (o *Version) GetBuildTag() string

GetBuildTag returns the BuildTag field if non-nil, zero value otherwise.

GetBuildTagOk

func (o *Version) GetBuildTagOk() (*string, bool)

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

SetBuildTag

func (o *Version) SetBuildTag(v string)

SetBuildTag sets BuildTag field to given value.

HasBuildTag

func (o *Version) HasBuildTag() bool

HasBuildTag returns a boolean if a field has been set.

GetBuildTimestamp

func (o *Version) GetBuildTimestamp() string

GetBuildTimestamp returns the BuildTimestamp field if non-nil, zero value otherwise.

GetBuildTimestampOk

func (o *Version) GetBuildTimestampOk() (*string, bool)

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

SetBuildTimestamp

func (o *Version) SetBuildTimestamp(v string)

SetBuildTimestamp sets BuildTimestamp field to given value.

HasBuildTimestamp

func (o *Version) HasBuildTimestamp() bool

HasBuildTimestamp returns a boolean if a field has been set.

GetVersion

func (o *Version) GetVersion() string

GetVersion returns the Version field if non-nil, zero value otherwise.

GetVersionOk

func (o *Version) GetVersionOk() (*string, bool)

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

SetVersion

func (o *Version) SetVersion(v string)

SetVersion sets Version field to given value.

HasVersion

func (o *Version) HasVersion() bool

HasVersion returns a boolean if a field has been set.

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