class ShopifyAPI::Auth::AssociatedUser
Public Instance Methods
Source
# File lib/shopify_api/auth/associated_user.rb, line 20 def ==(other) if other id == other.id && first_name == other.first_name && last_name == other.last_name && email == other.email && email_verified == other.email_verified && account_owner == other.account_owner && locale == other.locale && collaborator == other.collaborator else false end end
Also aliased as: eql?