class ShopifyAPI::Auth::Oauth::SessionCookie
Constants
- SESSION_COOKIE_NAME
Public Instance Methods
Source
# File lib/shopify_api/auth/oauth/session_cookie.rb, line 18 def ==(other) return false unless other name == other.name && value == other.value && expires == other.expires end
Also aliased as: eql?