Name | Type | Description | Notes |
---|---|---|---|
Id | int32 | [readonly] | |
Url | string | [readonly] | |
Display | string | [readonly] | |
Username | string | Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only. |
func NewUser(id int32, url string, display string, username string, ) *User
NewUser instantiates a new User 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
func NewUserWithDefaults() *User
NewUserWithDefaults instantiates a new User 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
func (o *User) GetId() int32
GetId returns the Id field if non-nil, zero value otherwise.
func (o *User) GetIdOk() (*int32, 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.
func (o *User) SetId(v int32)
SetId sets Id field to given value.
func (o *User) GetUrl() string
GetUrl returns the Url field if non-nil, zero value otherwise.
func (o *User) GetUrlOk() (*string, bool)
GetUrlOk returns a tuple with the Url field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *User) SetUrl(v string)
SetUrl sets Url field to given value.
func (o *User) GetDisplay() string
GetDisplay returns the Display field if non-nil, zero value otherwise.
func (o *User) GetDisplayOk() (*string, bool)
GetDisplayOk returns a tuple with the Display field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *User) SetDisplay(v string)
SetDisplay sets Display field to given value.
func (o *User) GetUsername() string
GetUsername returns the Username field if non-nil, zero value otherwise.
func (o *User) GetUsernameOk() (*string, bool)
GetUsernameOk returns a tuple with the Username field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *User) SetUsername(v string)
SetUsername sets Username field to given value.