Skip to content

Latest commit

 

History

History
160 lines (87 loc) · 4.19 KB

IdentityUserToken.md

File metadata and controls

160 lines (87 loc) · 4.19 KB

IdentityUserToken

Properties

Name Type Description Notes
TenantId Pointer to string [optional] [readonly]
UserId Pointer to string [optional] [readonly]
LoginProvider Pointer to string [optional] [readonly]
Name Pointer to string [optional] [readonly]
Value Pointer to string [optional]

Methods

NewIdentityUserToken

func NewIdentityUserToken() *IdentityUserToken

NewIdentityUserToken instantiates a new IdentityUserToken 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

NewIdentityUserTokenWithDefaults

func NewIdentityUserTokenWithDefaults() *IdentityUserToken

NewIdentityUserTokenWithDefaults instantiates a new IdentityUserToken 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

GetTenantId

func (o *IdentityUserToken) GetTenantId() string

GetTenantId returns the TenantId field if non-nil, zero value otherwise.

GetTenantIdOk

func (o *IdentityUserToken) GetTenantIdOk() (*string, bool)

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

SetTenantId

func (o *IdentityUserToken) SetTenantId(v string)

SetTenantId sets TenantId field to given value.

HasTenantId

func (o *IdentityUserToken) HasTenantId() bool

HasTenantId returns a boolean if a field has been set.

GetUserId

func (o *IdentityUserToken) GetUserId() string

GetUserId returns the UserId field if non-nil, zero value otherwise.

GetUserIdOk

func (o *IdentityUserToken) GetUserIdOk() (*string, bool)

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

SetUserId

func (o *IdentityUserToken) SetUserId(v string)

SetUserId sets UserId field to given value.

HasUserId

func (o *IdentityUserToken) HasUserId() bool

HasUserId returns a boolean if a field has been set.

GetLoginProvider

func (o *IdentityUserToken) GetLoginProvider() string

GetLoginProvider returns the LoginProvider field if non-nil, zero value otherwise.

GetLoginProviderOk

func (o *IdentityUserToken) GetLoginProviderOk() (*string, bool)

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

SetLoginProvider

func (o *IdentityUserToken) SetLoginProvider(v string)

SetLoginProvider sets LoginProvider field to given value.

HasLoginProvider

func (o *IdentityUserToken) HasLoginProvider() bool

HasLoginProvider returns a boolean if a field has been set.

GetName

func (o *IdentityUserToken) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *IdentityUserToken) HasName() bool

HasName returns a boolean if a field has been set.

GetValue

func (o *IdentityUserToken) GetValue() string

GetValue returns the Value field if non-nil, zero value otherwise.

GetValueOk

func (o *IdentityUserToken) GetValueOk() (*string, bool)

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

SetValue

func (o *IdentityUserToken) SetValue(v string)

SetValue sets Value field to given value.

HasValue

func (o *IdentityUserToken) HasValue() bool

HasValue returns a boolean if a field has been set.

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