first version
This commit is contained in:
654
docs/SchemaGetUserResp.md
Normal file
654
docs/SchemaGetUserResp.md
Normal file
@@ -0,0 +1,654 @@
|
||||
# SchemaGetUserResp
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**AccessToken** | Pointer to **string** | access token | [optional]
|
||||
**AnswerCount** | Pointer to **int32** | answer count | [optional]
|
||||
**AuthorityGroup** | Pointer to **int32** | authority group | [optional]
|
||||
**Avatar** | Pointer to **string** | avatar | [optional]
|
||||
**Bio** | Pointer to **string** | bio markdown | [optional]
|
||||
**BioHtml** | Pointer to **string** | bio html | [optional]
|
||||
**CreatedAt** | Pointer to **int32** | create time | [optional]
|
||||
**DisplayName** | Pointer to **string** | display name | [optional]
|
||||
**EMail** | Pointer to **string** | email | [optional]
|
||||
**FollowCount** | Pointer to **int32** | follow count | [optional]
|
||||
**Id** | Pointer to **string** | user id | [optional]
|
||||
**IpInfo** | Pointer to **string** | ip info | [optional]
|
||||
**Language** | Pointer to **string** | language | [optional]
|
||||
**LastLoginDate** | Pointer to **int32** | last login date | [optional]
|
||||
**Location** | Pointer to **string** | location | [optional]
|
||||
**MailStatus** | Pointer to **int32** | mail status(1 pass 2 to be verified) | [optional]
|
||||
**Mobile** | Pointer to **string** | mobile | [optional]
|
||||
**NoticeStatus** | Pointer to **int32** | notice status(1 on 2off) | [optional]
|
||||
**QuestionCount** | Pointer to **int32** | question count | [optional]
|
||||
**Rank** | Pointer to **int32** | rank | [optional]
|
||||
**RoleId** | Pointer to **int32** | role id | [optional]
|
||||
**Status** | Pointer to **string** | user status | [optional]
|
||||
**Username** | Pointer to **string** | username | [optional]
|
||||
**Website** | Pointer to **string** | website | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewSchemaGetUserResp
|
||||
|
||||
`func NewSchemaGetUserResp() *SchemaGetUserResp`
|
||||
|
||||
NewSchemaGetUserResp instantiates a new SchemaGetUserResp 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
|
||||
|
||||
### NewSchemaGetUserRespWithDefaults
|
||||
|
||||
`func NewSchemaGetUserRespWithDefaults() *SchemaGetUserResp`
|
||||
|
||||
NewSchemaGetUserRespWithDefaults instantiates a new SchemaGetUserResp 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
|
||||
|
||||
### GetAccessToken
|
||||
|
||||
`func (o *SchemaGetUserResp) GetAccessToken() string`
|
||||
|
||||
GetAccessToken returns the AccessToken field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAccessTokenOk
|
||||
|
||||
`func (o *SchemaGetUserResp) GetAccessTokenOk() (*string, bool)`
|
||||
|
||||
GetAccessTokenOk returns a tuple with the AccessToken field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAccessToken
|
||||
|
||||
`func (o *SchemaGetUserResp) SetAccessToken(v string)`
|
||||
|
||||
SetAccessToken sets AccessToken field to given value.
|
||||
|
||||
### HasAccessToken
|
||||
|
||||
`func (o *SchemaGetUserResp) HasAccessToken() bool`
|
||||
|
||||
HasAccessToken returns a boolean if a field has been set.
|
||||
|
||||
### GetAnswerCount
|
||||
|
||||
`func (o *SchemaGetUserResp) GetAnswerCount() int32`
|
||||
|
||||
GetAnswerCount returns the AnswerCount field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAnswerCountOk
|
||||
|
||||
`func (o *SchemaGetUserResp) GetAnswerCountOk() (*int32, bool)`
|
||||
|
||||
GetAnswerCountOk returns a tuple with the AnswerCount field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAnswerCount
|
||||
|
||||
`func (o *SchemaGetUserResp) SetAnswerCount(v int32)`
|
||||
|
||||
SetAnswerCount sets AnswerCount field to given value.
|
||||
|
||||
### HasAnswerCount
|
||||
|
||||
`func (o *SchemaGetUserResp) HasAnswerCount() bool`
|
||||
|
||||
HasAnswerCount returns a boolean if a field has been set.
|
||||
|
||||
### GetAuthorityGroup
|
||||
|
||||
`func (o *SchemaGetUserResp) GetAuthorityGroup() int32`
|
||||
|
||||
GetAuthorityGroup returns the AuthorityGroup field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAuthorityGroupOk
|
||||
|
||||
`func (o *SchemaGetUserResp) GetAuthorityGroupOk() (*int32, bool)`
|
||||
|
||||
GetAuthorityGroupOk returns a tuple with the AuthorityGroup field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAuthorityGroup
|
||||
|
||||
`func (o *SchemaGetUserResp) SetAuthorityGroup(v int32)`
|
||||
|
||||
SetAuthorityGroup sets AuthorityGroup field to given value.
|
||||
|
||||
### HasAuthorityGroup
|
||||
|
||||
`func (o *SchemaGetUserResp) HasAuthorityGroup() bool`
|
||||
|
||||
HasAuthorityGroup returns a boolean if a field has been set.
|
||||
|
||||
### GetAvatar
|
||||
|
||||
`func (o *SchemaGetUserResp) GetAvatar() string`
|
||||
|
||||
GetAvatar returns the Avatar field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAvatarOk
|
||||
|
||||
`func (o *SchemaGetUserResp) GetAvatarOk() (*string, bool)`
|
||||
|
||||
GetAvatarOk returns a tuple with the Avatar field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAvatar
|
||||
|
||||
`func (o *SchemaGetUserResp) SetAvatar(v string)`
|
||||
|
||||
SetAvatar sets Avatar field to given value.
|
||||
|
||||
### HasAvatar
|
||||
|
||||
`func (o *SchemaGetUserResp) HasAvatar() bool`
|
||||
|
||||
HasAvatar returns a boolean if a field has been set.
|
||||
|
||||
### GetBio
|
||||
|
||||
`func (o *SchemaGetUserResp) GetBio() string`
|
||||
|
||||
GetBio returns the Bio field if non-nil, zero value otherwise.
|
||||
|
||||
### GetBioOk
|
||||
|
||||
`func (o *SchemaGetUserResp) GetBioOk() (*string, bool)`
|
||||
|
||||
GetBioOk returns a tuple with the Bio field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetBio
|
||||
|
||||
`func (o *SchemaGetUserResp) SetBio(v string)`
|
||||
|
||||
SetBio sets Bio field to given value.
|
||||
|
||||
### HasBio
|
||||
|
||||
`func (o *SchemaGetUserResp) HasBio() bool`
|
||||
|
||||
HasBio returns a boolean if a field has been set.
|
||||
|
||||
### GetBioHtml
|
||||
|
||||
`func (o *SchemaGetUserResp) GetBioHtml() string`
|
||||
|
||||
GetBioHtml returns the BioHtml field if non-nil, zero value otherwise.
|
||||
|
||||
### GetBioHtmlOk
|
||||
|
||||
`func (o *SchemaGetUserResp) GetBioHtmlOk() (*string, bool)`
|
||||
|
||||
GetBioHtmlOk returns a tuple with the BioHtml field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetBioHtml
|
||||
|
||||
`func (o *SchemaGetUserResp) SetBioHtml(v string)`
|
||||
|
||||
SetBioHtml sets BioHtml field to given value.
|
||||
|
||||
### HasBioHtml
|
||||
|
||||
`func (o *SchemaGetUserResp) HasBioHtml() bool`
|
||||
|
||||
HasBioHtml returns a boolean if a field has been set.
|
||||
|
||||
### GetCreatedAt
|
||||
|
||||
`func (o *SchemaGetUserResp) GetCreatedAt() int32`
|
||||
|
||||
GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCreatedAtOk
|
||||
|
||||
`func (o *SchemaGetUserResp) GetCreatedAtOk() (*int32, bool)`
|
||||
|
||||
GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCreatedAt
|
||||
|
||||
`func (o *SchemaGetUserResp) SetCreatedAt(v int32)`
|
||||
|
||||
SetCreatedAt sets CreatedAt field to given value.
|
||||
|
||||
### HasCreatedAt
|
||||
|
||||
`func (o *SchemaGetUserResp) HasCreatedAt() bool`
|
||||
|
||||
HasCreatedAt returns a boolean if a field has been set.
|
||||
|
||||
### GetDisplayName
|
||||
|
||||
`func (o *SchemaGetUserResp) GetDisplayName() string`
|
||||
|
||||
GetDisplayName returns the DisplayName field if non-nil, zero value otherwise.
|
||||
|
||||
### GetDisplayNameOk
|
||||
|
||||
`func (o *SchemaGetUserResp) GetDisplayNameOk() (*string, bool)`
|
||||
|
||||
GetDisplayNameOk returns a tuple with the DisplayName field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetDisplayName
|
||||
|
||||
`func (o *SchemaGetUserResp) SetDisplayName(v string)`
|
||||
|
||||
SetDisplayName sets DisplayName field to given value.
|
||||
|
||||
### HasDisplayName
|
||||
|
||||
`func (o *SchemaGetUserResp) HasDisplayName() bool`
|
||||
|
||||
HasDisplayName returns a boolean if a field has been set.
|
||||
|
||||
### GetEMail
|
||||
|
||||
`func (o *SchemaGetUserResp) GetEMail() string`
|
||||
|
||||
GetEMail returns the EMail field if non-nil, zero value otherwise.
|
||||
|
||||
### GetEMailOk
|
||||
|
||||
`func (o *SchemaGetUserResp) 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 *SchemaGetUserResp) SetEMail(v string)`
|
||||
|
||||
SetEMail sets EMail field to given value.
|
||||
|
||||
### HasEMail
|
||||
|
||||
`func (o *SchemaGetUserResp) HasEMail() bool`
|
||||
|
||||
HasEMail returns a boolean if a field has been set.
|
||||
|
||||
### GetFollowCount
|
||||
|
||||
`func (o *SchemaGetUserResp) GetFollowCount() int32`
|
||||
|
||||
GetFollowCount returns the FollowCount field if non-nil, zero value otherwise.
|
||||
|
||||
### GetFollowCountOk
|
||||
|
||||
`func (o *SchemaGetUserResp) GetFollowCountOk() (*int32, bool)`
|
||||
|
||||
GetFollowCountOk returns a tuple with the FollowCount field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetFollowCount
|
||||
|
||||
`func (o *SchemaGetUserResp) SetFollowCount(v int32)`
|
||||
|
||||
SetFollowCount sets FollowCount field to given value.
|
||||
|
||||
### HasFollowCount
|
||||
|
||||
`func (o *SchemaGetUserResp) HasFollowCount() bool`
|
||||
|
||||
HasFollowCount returns a boolean if a field has been set.
|
||||
|
||||
### GetId
|
||||
|
||||
`func (o *SchemaGetUserResp) GetId() string`
|
||||
|
||||
GetId returns the Id field if non-nil, zero value otherwise.
|
||||
|
||||
### GetIdOk
|
||||
|
||||
`func (o *SchemaGetUserResp) 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 *SchemaGetUserResp) SetId(v string)`
|
||||
|
||||
SetId sets Id field to given value.
|
||||
|
||||
### HasId
|
||||
|
||||
`func (o *SchemaGetUserResp) HasId() bool`
|
||||
|
||||
HasId returns a boolean if a field has been set.
|
||||
|
||||
### GetIpInfo
|
||||
|
||||
`func (o *SchemaGetUserResp) GetIpInfo() string`
|
||||
|
||||
GetIpInfo returns the IpInfo field if non-nil, zero value otherwise.
|
||||
|
||||
### GetIpInfoOk
|
||||
|
||||
`func (o *SchemaGetUserResp) GetIpInfoOk() (*string, bool)`
|
||||
|
||||
GetIpInfoOk returns a tuple with the IpInfo field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetIpInfo
|
||||
|
||||
`func (o *SchemaGetUserResp) SetIpInfo(v string)`
|
||||
|
||||
SetIpInfo sets IpInfo field to given value.
|
||||
|
||||
### HasIpInfo
|
||||
|
||||
`func (o *SchemaGetUserResp) HasIpInfo() bool`
|
||||
|
||||
HasIpInfo returns a boolean if a field has been set.
|
||||
|
||||
### GetLanguage
|
||||
|
||||
`func (o *SchemaGetUserResp) GetLanguage() string`
|
||||
|
||||
GetLanguage returns the Language field if non-nil, zero value otherwise.
|
||||
|
||||
### GetLanguageOk
|
||||
|
||||
`func (o *SchemaGetUserResp) GetLanguageOk() (*string, bool)`
|
||||
|
||||
GetLanguageOk returns a tuple with the Language field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetLanguage
|
||||
|
||||
`func (o *SchemaGetUserResp) SetLanguage(v string)`
|
||||
|
||||
SetLanguage sets Language field to given value.
|
||||
|
||||
### HasLanguage
|
||||
|
||||
`func (o *SchemaGetUserResp) HasLanguage() bool`
|
||||
|
||||
HasLanguage returns a boolean if a field has been set.
|
||||
|
||||
### GetLastLoginDate
|
||||
|
||||
`func (o *SchemaGetUserResp) GetLastLoginDate() int32`
|
||||
|
||||
GetLastLoginDate returns the LastLoginDate field if non-nil, zero value otherwise.
|
||||
|
||||
### GetLastLoginDateOk
|
||||
|
||||
`func (o *SchemaGetUserResp) GetLastLoginDateOk() (*int32, bool)`
|
||||
|
||||
GetLastLoginDateOk returns a tuple with the LastLoginDate field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetLastLoginDate
|
||||
|
||||
`func (o *SchemaGetUserResp) SetLastLoginDate(v int32)`
|
||||
|
||||
SetLastLoginDate sets LastLoginDate field to given value.
|
||||
|
||||
### HasLastLoginDate
|
||||
|
||||
`func (o *SchemaGetUserResp) HasLastLoginDate() bool`
|
||||
|
||||
HasLastLoginDate returns a boolean if a field has been set.
|
||||
|
||||
### GetLocation
|
||||
|
||||
`func (o *SchemaGetUserResp) GetLocation() string`
|
||||
|
||||
GetLocation returns the Location field if non-nil, zero value otherwise.
|
||||
|
||||
### GetLocationOk
|
||||
|
||||
`func (o *SchemaGetUserResp) GetLocationOk() (*string, bool)`
|
||||
|
||||
GetLocationOk returns a tuple with the Location field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetLocation
|
||||
|
||||
`func (o *SchemaGetUserResp) SetLocation(v string)`
|
||||
|
||||
SetLocation sets Location field to given value.
|
||||
|
||||
### HasLocation
|
||||
|
||||
`func (o *SchemaGetUserResp) HasLocation() bool`
|
||||
|
||||
HasLocation returns a boolean if a field has been set.
|
||||
|
||||
### GetMailStatus
|
||||
|
||||
`func (o *SchemaGetUserResp) GetMailStatus() int32`
|
||||
|
||||
GetMailStatus returns the MailStatus field if non-nil, zero value otherwise.
|
||||
|
||||
### GetMailStatusOk
|
||||
|
||||
`func (o *SchemaGetUserResp) GetMailStatusOk() (*int32, bool)`
|
||||
|
||||
GetMailStatusOk returns a tuple with the MailStatus field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetMailStatus
|
||||
|
||||
`func (o *SchemaGetUserResp) SetMailStatus(v int32)`
|
||||
|
||||
SetMailStatus sets MailStatus field to given value.
|
||||
|
||||
### HasMailStatus
|
||||
|
||||
`func (o *SchemaGetUserResp) HasMailStatus() bool`
|
||||
|
||||
HasMailStatus returns a boolean if a field has been set.
|
||||
|
||||
### GetMobile
|
||||
|
||||
`func (o *SchemaGetUserResp) GetMobile() string`
|
||||
|
||||
GetMobile returns the Mobile field if non-nil, zero value otherwise.
|
||||
|
||||
### GetMobileOk
|
||||
|
||||
`func (o *SchemaGetUserResp) GetMobileOk() (*string, bool)`
|
||||
|
||||
GetMobileOk returns a tuple with the Mobile field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetMobile
|
||||
|
||||
`func (o *SchemaGetUserResp) SetMobile(v string)`
|
||||
|
||||
SetMobile sets Mobile field to given value.
|
||||
|
||||
### HasMobile
|
||||
|
||||
`func (o *SchemaGetUserResp) HasMobile() bool`
|
||||
|
||||
HasMobile returns a boolean if a field has been set.
|
||||
|
||||
### GetNoticeStatus
|
||||
|
||||
`func (o *SchemaGetUserResp) GetNoticeStatus() int32`
|
||||
|
||||
GetNoticeStatus returns the NoticeStatus field if non-nil, zero value otherwise.
|
||||
|
||||
### GetNoticeStatusOk
|
||||
|
||||
`func (o *SchemaGetUserResp) GetNoticeStatusOk() (*int32, bool)`
|
||||
|
||||
GetNoticeStatusOk returns a tuple with the NoticeStatus field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetNoticeStatus
|
||||
|
||||
`func (o *SchemaGetUserResp) SetNoticeStatus(v int32)`
|
||||
|
||||
SetNoticeStatus sets NoticeStatus field to given value.
|
||||
|
||||
### HasNoticeStatus
|
||||
|
||||
`func (o *SchemaGetUserResp) HasNoticeStatus() bool`
|
||||
|
||||
HasNoticeStatus returns a boolean if a field has been set.
|
||||
|
||||
### GetQuestionCount
|
||||
|
||||
`func (o *SchemaGetUserResp) GetQuestionCount() int32`
|
||||
|
||||
GetQuestionCount returns the QuestionCount field if non-nil, zero value otherwise.
|
||||
|
||||
### GetQuestionCountOk
|
||||
|
||||
`func (o *SchemaGetUserResp) GetQuestionCountOk() (*int32, bool)`
|
||||
|
||||
GetQuestionCountOk returns a tuple with the QuestionCount field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetQuestionCount
|
||||
|
||||
`func (o *SchemaGetUserResp) SetQuestionCount(v int32)`
|
||||
|
||||
SetQuestionCount sets QuestionCount field to given value.
|
||||
|
||||
### HasQuestionCount
|
||||
|
||||
`func (o *SchemaGetUserResp) HasQuestionCount() bool`
|
||||
|
||||
HasQuestionCount returns a boolean if a field has been set.
|
||||
|
||||
### GetRank
|
||||
|
||||
`func (o *SchemaGetUserResp) GetRank() int32`
|
||||
|
||||
GetRank returns the Rank field if non-nil, zero value otherwise.
|
||||
|
||||
### GetRankOk
|
||||
|
||||
`func (o *SchemaGetUserResp) GetRankOk() (*int32, bool)`
|
||||
|
||||
GetRankOk returns a tuple with the Rank field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetRank
|
||||
|
||||
`func (o *SchemaGetUserResp) SetRank(v int32)`
|
||||
|
||||
SetRank sets Rank field to given value.
|
||||
|
||||
### HasRank
|
||||
|
||||
`func (o *SchemaGetUserResp) HasRank() bool`
|
||||
|
||||
HasRank returns a boolean if a field has been set.
|
||||
|
||||
### GetRoleId
|
||||
|
||||
`func (o *SchemaGetUserResp) GetRoleId() int32`
|
||||
|
||||
GetRoleId returns the RoleId field if non-nil, zero value otherwise.
|
||||
|
||||
### GetRoleIdOk
|
||||
|
||||
`func (o *SchemaGetUserResp) GetRoleIdOk() (*int32, bool)`
|
||||
|
||||
GetRoleIdOk returns a tuple with the RoleId field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetRoleId
|
||||
|
||||
`func (o *SchemaGetUserResp) SetRoleId(v int32)`
|
||||
|
||||
SetRoleId sets RoleId field to given value.
|
||||
|
||||
### HasRoleId
|
||||
|
||||
`func (o *SchemaGetUserResp) HasRoleId() bool`
|
||||
|
||||
HasRoleId returns a boolean if a field has been set.
|
||||
|
||||
### GetStatus
|
||||
|
||||
`func (o *SchemaGetUserResp) GetStatus() string`
|
||||
|
||||
GetStatus returns the Status field if non-nil, zero value otherwise.
|
||||
|
||||
### GetStatusOk
|
||||
|
||||
`func (o *SchemaGetUserResp) GetStatusOk() (*string, bool)`
|
||||
|
||||
GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetStatus
|
||||
|
||||
`func (o *SchemaGetUserResp) SetStatus(v string)`
|
||||
|
||||
SetStatus sets Status field to given value.
|
||||
|
||||
### HasStatus
|
||||
|
||||
`func (o *SchemaGetUserResp) HasStatus() bool`
|
||||
|
||||
HasStatus returns a boolean if a field has been set.
|
||||
|
||||
### GetUsername
|
||||
|
||||
`func (o *SchemaGetUserResp) GetUsername() string`
|
||||
|
||||
GetUsername returns the Username field if non-nil, zero value otherwise.
|
||||
|
||||
### GetUsernameOk
|
||||
|
||||
`func (o *SchemaGetUserResp) 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.
|
||||
|
||||
### SetUsername
|
||||
|
||||
`func (o *SchemaGetUserResp) SetUsername(v string)`
|
||||
|
||||
SetUsername sets Username field to given value.
|
||||
|
||||
### HasUsername
|
||||
|
||||
`func (o *SchemaGetUserResp) HasUsername() bool`
|
||||
|
||||
HasUsername returns a boolean if a field has been set.
|
||||
|
||||
### GetWebsite
|
||||
|
||||
`func (o *SchemaGetUserResp) GetWebsite() string`
|
||||
|
||||
GetWebsite returns the Website field if non-nil, zero value otherwise.
|
||||
|
||||
### GetWebsiteOk
|
||||
|
||||
`func (o *SchemaGetUserResp) GetWebsiteOk() (*string, bool)`
|
||||
|
||||
GetWebsiteOk returns a tuple with the Website field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetWebsite
|
||||
|
||||
`func (o *SchemaGetUserResp) SetWebsite(v string)`
|
||||
|
||||
SetWebsite sets Website field to given value.
|
||||
|
||||
### HasWebsite
|
||||
|
||||
`func (o *SchemaGetUserResp) HasWebsite() bool`
|
||||
|
||||
HasWebsite returns a boolean if a field has been set.
|
||||
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user