class IdnSdkRuby::Com::Nbos::Capi::Modules::Identity::V0::SocialAccountApiModel
Attributes
accessToken[RW]
email[RW]
id[RW]
imageUrl[RW]
Public Class Methods
new(social_params = nil)
click to toggle source
# File lib/idn_sdk_ruby/com/nbos/capi/modules/identity/v0/social_account_api_model.rb, line 12 def initialize(social_params = nil) if social_params != nil @id = social_params["id"] @email = social_params["email"] @socialType = social_params["socialType"] @imageUrl = social_params["imageUrl"] @accessToken = social_params["accessToken"] end end