Skip to content

Latest commit

 

History

History
186 lines (101 loc) · 4.47 KB

PublicUser.md

File metadata and controls

186 lines (101 loc) · 4.47 KB

PublicUser

Properties

Name Type Description Notes
Id Pointer to string [optional]
Email Pointer to string [optional]
Name Pointer to string [optional]
AvatarUrl Pointer to string [optional]
GithubId Pointer to string [optional]
GithubUser Pointer to string [optional]

Methods

NewPublicUser

func NewPublicUser() *PublicUser

NewPublicUser instantiates a new PublicUser 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

NewPublicUserWithDefaults

func NewPublicUserWithDefaults() *PublicUser

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

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

GetIdOk

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

SetId sets Id field to given value.

HasId

func (o *PublicUser) HasId() bool

HasId returns a boolean if a field has been set.

GetEmail

func (o *PublicUser) GetEmail() string

GetEmail returns the Email field if non-nil, zero value otherwise.

GetEmailOk

func (o *PublicUser) GetEmailOk() (*string, bool)

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

SetEmail

func (o *PublicUser) SetEmail(v string)

SetEmail sets Email field to given value.

HasEmail

func (o *PublicUser) HasEmail() bool

HasEmail returns a boolean if a field has been set.

GetName

func (o *PublicUser) GetName() string

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

GetNameOk

func (o *PublicUser) 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 *PublicUser) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *PublicUser) HasName() bool

HasName returns a boolean if a field has been set.

GetAvatarUrl

func (o *PublicUser) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field if non-nil, zero value otherwise.

GetAvatarUrlOk

func (o *PublicUser) GetAvatarUrlOk() (*string, bool)

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

SetAvatarUrl

func (o *PublicUser) SetAvatarUrl(v string)

SetAvatarUrl sets AvatarUrl field to given value.

HasAvatarUrl

func (o *PublicUser) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

GetGithubId

func (o *PublicUser) GetGithubId() string

GetGithubId returns the GithubId field if non-nil, zero value otherwise.

GetGithubIdOk

func (o *PublicUser) GetGithubIdOk() (*string, bool)

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

SetGithubId

func (o *PublicUser) SetGithubId(v string)

SetGithubId sets GithubId field to given value.

HasGithubId

func (o *PublicUser) HasGithubId() bool

HasGithubId returns a boolean if a field has been set.

GetGithubUser

func (o *PublicUser) GetGithubUser() string

GetGithubUser returns the GithubUser field if non-nil, zero value otherwise.

GetGithubUserOk

func (o *PublicUser) GetGithubUserOk() (*string, bool)

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

SetGithubUser

func (o *PublicUser) SetGithubUser(v string)

SetGithubUser sets GithubUser field to given value.

HasGithubUser

func (o *PublicUser) HasGithubUser() bool

HasGithubUser returns a boolean if a field has been set.

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