Class: ShopifyAPI::Auth::Oauth::SessionCookie
- Inherits:
-
T::Struct
- Object
- T::Struct
- ShopifyAPI::Auth::Oauth::SessionCookie
- Extended by:
- T::Sig
- Defined in:
- lib/shopify_api/auth/oauth/session_cookie.rb
Constant Summary collapse
- SESSION_COOKIE_NAME =
"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?, :== |