Class: ShopifyAPI::Auth::Oauth::SessionCookie

Inherits:
T::Struct
  • Object
show all
Extended by:
T::Sig
Defined in:
lib/shopify_api/auth/oauth/session_cookie.rb

Constant Summary collapse

"shopify_app_session"

Instance Method Summary collapse

Instance Method Details

#==(other) ⇒ Object



18
19
20
21
22
23
24
# 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

#eql?Object



16
# File 'lib/shopify_api/auth/oauth/session_cookie.rb', line 16

alias_method :eql?, :==