| Name | Type | Description | Notes |
|---|---|---|---|
| UserId | string | The ID of the user. | |
| RemoteId | string | The ID of the remote user. | |
| ThirdPartyProvider | ThirdPartyProviderEnum | The third party provider of the remote user. |
func NewRemoteUser(userId string, remoteId string, thirdPartyProvider ThirdPartyProviderEnum, ) *RemoteUser
NewRemoteUser instantiates a new RemoteUser 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 NewRemoteUserWithDefaults() *RemoteUser
NewRemoteUserWithDefaults instantiates a new RemoteUser 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 *RemoteUser) GetUserId() string
GetUserId returns the UserId field if non-nil, zero value otherwise.
func (o *RemoteUser) 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.
func (o *RemoteUser) SetUserId(v string)
SetUserId sets UserId field to given value.
func (o *RemoteUser) GetRemoteId() string
GetRemoteId returns the RemoteId field if non-nil, zero value otherwise.
func (o *RemoteUser) GetRemoteIdOk() (*string, bool)
GetRemoteIdOk returns a tuple with the RemoteId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *RemoteUser) SetRemoteId(v string)
SetRemoteId sets RemoteId field to given value.
func (o *RemoteUser) GetThirdPartyProvider() ThirdPartyProviderEnum
GetThirdPartyProvider returns the ThirdPartyProvider field if non-nil, zero value otherwise.
func (o *RemoteUser) GetThirdPartyProviderOk() (*ThirdPartyProviderEnum, bool)
GetThirdPartyProviderOk returns a tuple with the ThirdPartyProvider field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *RemoteUser) SetThirdPartyProvider(v ThirdPartyProviderEnum)
SetThirdPartyProvider sets ThirdPartyProvider field to given value.