Skip to content

Files

Latest commit

 

History

History
93 lines (50 loc) · 2.42 KB

UserContributor.md

File metadata and controls

93 lines (50 loc) · 2.42 KB

UserContributor

Properties

Name Type Description Notes
UpdatedAt string
Count int32
User User

Methods

NewUserContributor

func NewUserContributor(updatedAt string, count int32, user User, ) *UserContributor

NewUserContributor instantiates a new UserContributor 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

NewUserContributorWithDefaults

func NewUserContributorWithDefaults() *UserContributor

NewUserContributorWithDefaults instantiates a new UserContributor 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

GetUpdatedAt

func (o *UserContributor) GetUpdatedAt() string

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

GetUpdatedAtOk

func (o *UserContributor) GetUpdatedAtOk() (*string, 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 *UserContributor) SetUpdatedAt(v string)

SetUpdatedAt sets UpdatedAt field to given value.

GetCount

func (o *UserContributor) GetCount() int32

GetCount returns the Count field if non-nil, zero value otherwise.

GetCountOk

func (o *UserContributor) GetCountOk() (*int32, bool)

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

SetCount

func (o *UserContributor) SetCount(v int32)

SetCount sets Count field to given value.

GetUser

func (o *UserContributor) GetUser() User

GetUser returns the User field if non-nil, zero value otherwise.

GetUserOk

func (o *UserContributor) GetUserOk() (*User, bool)

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

SetUser

func (o *UserContributor) SetUser(v User)

SetUser sets User field to given value.

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