Sha256: 70d264cee1c5dfcdda53afe2654c8ea72f9582c571525afdaa689b9061f5a680

Contents?: true

Size: 1.02 KB

Versions: 10

Compression:

Stored size: 1.02 KB

Contents

# typed: strict
# frozen_string_literal: true

module ShopifyAPI
  module Auth
    module Oauth
      class AccessTokenResponse < T::Struct
        extend T::Sig

        const :access_token, String
        const :scope, String
        const :session, T.nilable(String)
        const :expires_in, T.nilable(Integer)
        const :associated_user, T.nilable(AssociatedUser)
        const :associated_user_scope, T.nilable(String)

        sig { returns(T::Boolean) }
        def online_token?
          !associated_user.nil?
        end

        alias_method :eql?, :==
        sig { params(other: T.nilable(AccessTokenResponse)).returns(T::Boolean) }
        def ==(other)
          return false unless other

          access_token == other.access_token &&
            scope == other.scope &&
            session == other.session &&
            expires_in == other.expires_in &&
            associated_user == other.associated_user &&
            associated_user_scope == other.associated_user_scope
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
shopify_api-14.8.0 lib/shopify_api/auth/oauth/access_token_response.rb
shopify_api-14.7.0 lib/shopify_api/auth/oauth/access_token_response.rb
shopify_api-14.6.0 lib/shopify_api/auth/oauth/access_token_response.rb
shopify_api-14.5.0 lib/shopify_api/auth/oauth/access_token_response.rb
shopify_api-14.4.0 lib/shopify_api/auth/oauth/access_token_response.rb
shopify_api-14.3.0 lib/shopify_api/auth/oauth/access_token_response.rb
shopify_api-14.2.0 lib/shopify_api/auth/oauth/access_token_response.rb
shopify_api-14.1.0 lib/shopify_api/auth/oauth/access_token_response.rb
shopify_api-14.0.1 lib/shopify_api/auth/oauth/access_token_response.rb
shopify_api-14.0.0 lib/shopify_api/auth/oauth/access_token_response.rb