Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.62 KB

Revision.md

File metadata and controls

108 lines (59 loc) · 2.62 KB

Revision

Properties

Name Type Description Notes
Version Pointer to int32 [optional]
Real Pointer to int32 [optional]
IsRepack Pointer to bool [optional]

Methods

NewRevision

func NewRevision() *Revision

NewRevision instantiates a new Revision 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

NewRevisionWithDefaults

func NewRevisionWithDefaults() *Revision

NewRevisionWithDefaults instantiates a new Revision 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

GetVersion

func (o *Revision) GetVersion() int32

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

GetVersionOk

func (o *Revision) GetVersionOk() (*int32, 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 *Revision) SetVersion(v int32)

SetVersion sets Version field to given value.

HasVersion

func (o *Revision) HasVersion() bool

HasVersion returns a boolean if a field has been set.

GetReal

func (o *Revision) GetReal() int32

GetReal returns the Real field if non-nil, zero value otherwise.

GetRealOk

func (o *Revision) GetRealOk() (*int32, bool)

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

SetReal

func (o *Revision) SetReal(v int32)

SetReal sets Real field to given value.

HasReal

func (o *Revision) HasReal() bool

HasReal returns a boolean if a field has been set.

GetIsRepack

func (o *Revision) GetIsRepack() bool

GetIsRepack returns the IsRepack field if non-nil, zero value otherwise.

GetIsRepackOk

func (o *Revision) GetIsRepackOk() (*bool, bool)

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

SetIsRepack

func (o *Revision) SetIsRepack(v bool)

SetIsRepack sets IsRepack field to given value.

HasIsRepack

func (o *Revision) HasIsRepack() bool

HasIsRepack returns a boolean if a field has been set.

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