Skip to content

Latest commit

 

History

History
102 lines (57 loc) · 2.82 KB

Eula.md

File metadata and controls

102 lines (57 loc) · 2.82 KB

Eula

Properties

Name Type Description Notes
Identifier Pointer to NullableString A unique identifier that you can use for your own EULA tracking purposes. This might be a date, or a semantic version, etc. The only requirement is that it is unique across multiple EULAs. [optional]
Number Pointer to NullableInt64 A sequential identifier that increments by one for each new commit in a repository. [optional]

Methods

NewEula

func NewEula() *Eula

NewEula instantiates a new Eula 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

NewEulaWithDefaults

func NewEulaWithDefaults() *Eula

NewEulaWithDefaults instantiates a new Eula 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

GetIdentifier

func (o *Eula) GetIdentifier() string

GetIdentifier returns the Identifier field if non-nil, zero value otherwise.

GetIdentifierOk

func (o *Eula) GetIdentifierOk() (*string, bool)

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

SetIdentifier

func (o *Eula) SetIdentifier(v string)

SetIdentifier sets Identifier field to given value.

HasIdentifier

func (o *Eula) HasIdentifier() bool

HasIdentifier returns a boolean if a field has been set.

SetIdentifierNil

func (o *Eula) SetIdentifierNil(b bool)

SetIdentifierNil sets the value for Identifier to be an explicit nil

UnsetIdentifier

func (o *Eula) UnsetIdentifier()

UnsetIdentifier ensures that no value is present for Identifier, not even an explicit nil

GetNumber

func (o *Eula) GetNumber() int64

GetNumber returns the Number field if non-nil, zero value otherwise.

GetNumberOk

func (o *Eula) GetNumberOk() (*int64, bool)

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

SetNumber

func (o *Eula) SetNumber(v int64)

SetNumber sets Number field to given value.

HasNumber

func (o *Eula) HasNumber() bool

HasNumber returns a boolean if a field has been set.

SetNumberNil

func (o *Eula) SetNumberNil(b bool)

SetNumberNil sets the value for Number to be an explicit nil

UnsetNumber

func (o *Eula) UnsetNumber()

UnsetNumber ensures that no value is present for Number, not even an explicit nil

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