Class: ShopifyAPI::AccessScope

Inherits:
Rest::Base
  • Object
show all
Extended by:
T::Sig
Defined in:
lib/shopify_api/rest/resources/2022_04/access_scope.rb,
lib/shopify_api/rest/resources/2022_07/access_scope.rb,
lib/shopify_api/rest/resources/2022_10/access_scope.rb,
lib/shopify_api/rest/resources/2023_01/access_scope.rb,
lib/shopify_api/rest/resources/2023_04/access_scope.rb,
lib/shopify_api/rest/resources/2023_07/access_scope.rb,
lib/shopify_api/rest/resources/2023_10/access_scope.rb,
lib/shopify_api/rest/resources/2024_01/access_scope.rb,
lib/shopify_api/rest/resources/2024_04/access_scope.rb,
lib/shopify_api/rest/resources/2024_07/access_scope.rb,
lib/shopify_api/rest/resources/2024_10/access_scope.rb,
lib/shopify_api/rest/resources/2025_01/access_scope.rb,
lib/shopify_api/rest/resources/2025_04/access_scope.rb,
lib/shopify_api/rest/resources/2025_07/access_scope.rb,
lib/shopify_api/rest/resources/2025_10/access_scope.rb,
lib/shopify_api/rest/resources/2026_01/access_scope.rb,
lib/shopify_api/rest/resources/2026_04/access_scope.rb,
lib/shopify_api/rest/resources/2026_07/access_scope.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(session: ShopifyAPI::Context.active_session, from_hash: nil) ⇒ AccessScope

Returns a new instance of AccessScope.



19
20
21
22
23
24
25
# File 'lib/shopify_api/rest/resources/2022_04/access_scope.rb', line 19

def initialize(session: ShopifyAPI::Context.active_session, from_hash: nil)

  @handle = T.let(nil, T.nilable(String))
  @access_scopes = T.let(nil, T.nilable(T::Array[T.untyped]))

  super(session: session, from_hash: from_hash)
end

Instance Attribute Details

#access_scopesObject (readonly)

Returns the value of attribute access_scopes.



37
38
39
# File 'lib/shopify_api/rest/resources/2022_04/access_scope.rb', line 37

def access_scopes
  @access_scopes
end

#handleObject (readonly)

Returns the value of attribute handle.



35
36
37
# File 'lib/shopify_api/rest/resources/2022_04/access_scope.rb', line 35

def handle
  @handle
end

Class Method Details

.all(session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object



46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/shopify_api/rest/resources/2022_04/access_scope.rb', line 46

def all(
  session: ShopifyAPI::Context.active_session,
  **kwargs
)
  response = base_find(
    session: session,
    ids: {},
    params: {}.merge(kwargs).compact,
  )

  T.cast(response, T::Array[AccessScope])
end