Skip to content

Latest commit

 

History

History
181 lines (98 loc) · 4.71 KB

FirebaseUserInfo.md

File metadata and controls

181 lines (98 loc) · 4.71 KB

FirebaseUserInfo

Properties

Name Type Description Notes
Uid string
DisplayName Pointer to string [optional]
Email Pointer to string [optional]
PhoneNumber Pointer to string [optional]
PhotoUrl Pointer to string [optional]
ProviderId Pointer to string [optional]

Methods

NewFirebaseUserInfo

func NewFirebaseUserInfo(uid string, ) *FirebaseUserInfo

NewFirebaseUserInfo instantiates a new FirebaseUserInfo 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

NewFirebaseUserInfoWithDefaults

func NewFirebaseUserInfoWithDefaults() *FirebaseUserInfo

NewFirebaseUserInfoWithDefaults instantiates a new FirebaseUserInfo 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

GetUid

func (o *FirebaseUserInfo) GetUid() string

GetUid returns the Uid field if non-nil, zero value otherwise.

GetUidOk

func (o *FirebaseUserInfo) GetUidOk() (*string, bool)

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

SetUid

func (o *FirebaseUserInfo) SetUid(v string)

SetUid sets Uid field to given value.

GetDisplayName

func (o *FirebaseUserInfo) GetDisplayName() string

GetDisplayName returns the DisplayName field if non-nil, zero value otherwise.

GetDisplayNameOk

func (o *FirebaseUserInfo) 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 *FirebaseUserInfo) SetDisplayName(v string)

SetDisplayName sets DisplayName field to given value.

HasDisplayName

func (o *FirebaseUserInfo) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

GetEmail

func (o *FirebaseUserInfo) GetEmail() string

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

GetEmailOk

func (o *FirebaseUserInfo) 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 *FirebaseUserInfo) SetEmail(v string)

SetEmail sets Email field to given value.

HasEmail

func (o *FirebaseUserInfo) HasEmail() bool

HasEmail returns a boolean if a field has been set.

GetPhoneNumber

func (o *FirebaseUserInfo) GetPhoneNumber() string

GetPhoneNumber returns the PhoneNumber field if non-nil, zero value otherwise.

GetPhoneNumberOk

func (o *FirebaseUserInfo) GetPhoneNumberOk() (*string, bool)

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

SetPhoneNumber

func (o *FirebaseUserInfo) SetPhoneNumber(v string)

SetPhoneNumber sets PhoneNumber field to given value.

HasPhoneNumber

func (o *FirebaseUserInfo) HasPhoneNumber() bool

HasPhoneNumber returns a boolean if a field has been set.

GetPhotoUrl

func (o *FirebaseUserInfo) GetPhotoUrl() string

GetPhotoUrl returns the PhotoUrl field if non-nil, zero value otherwise.

GetPhotoUrlOk

func (o *FirebaseUserInfo) GetPhotoUrlOk() (*string, bool)

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

SetPhotoUrl

func (o *FirebaseUserInfo) SetPhotoUrl(v string)

SetPhotoUrl sets PhotoUrl field to given value.

HasPhotoUrl

func (o *FirebaseUserInfo) HasPhotoUrl() bool

HasPhotoUrl returns a boolean if a field has been set.

GetProviderId

func (o *FirebaseUserInfo) GetProviderId() string

GetProviderId returns the ProviderId field if non-nil, zero value otherwise.

GetProviderIdOk

func (o *FirebaseUserInfo) GetProviderIdOk() (*string, bool)

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

SetProviderId

func (o *FirebaseUserInfo) SetProviderId(v string)

SetProviderId sets ProviderId field to given value.

HasProviderId

func (o *FirebaseUserInfo) HasProviderId() bool

HasProviderId returns a boolean if a field has been set.

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