class Google::Apis::IdentitytoolkitV3::UserInfo::ProviderUserInfo
Attributes
The user's display name at the IDP. Corresponds to the JSON property `displayName` @return [String]
User's email at IDP. Corresponds to the JSON property `email` @return [String]
User's identifier at IDP. Corresponds to the JSON property `federatedId` @return [String]
User's phone number. Corresponds to the JSON property `phoneNumber` @return [String]
The user's photo url at the IDP. Corresponds to the JSON property `photoUrl` @return [String]
The IdP ID. For white listed IdPs it's a short domain name, e.g., google.com, aol.com, live.net and yahoo.com. For other OpenID IdPs it's the OP identifier. Corresponds to the JSON property `providerId` @return [String]
User's raw identifier directly returned from IDP. Corresponds to the JSON property `rawId` @return [String]
User's screen name at Twitter or login name at Github. Corresponds to the JSON property `screenName` @return [String]
Public Class Methods
# File lib/google/apis/identitytoolkit_v3/classes.rb, line 2251 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/identitytoolkit_v3/classes.rb, line 2256 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @email = args[:email] if args.key?(:email) @federated_id = args[:federated_id] if args.key?(:federated_id) @phone_number = args[:phone_number] if args.key?(:phone_number) @photo_url = args[:photo_url] if args.key?(:photo_url) @provider_id = args[:provider_id] if args.key?(:provider_id) @raw_id = args[:raw_id] if args.key?(:raw_id) @screen_name = args[:screen_name] if args.key?(:screen_name) end