Class: ShopifyAPI::Balance

Inherits:
Rest::Base show all
Extended by:
T::Sig
Defined in:
lib/shopify_api/rest/resources/2022_04/balance.rb,
lib/shopify_api/rest/resources/2022_07/balance.rb,
lib/shopify_api/rest/resources/2022_10/balance.rb,
lib/shopify_api/rest/resources/2023_01/balance.rb,
lib/shopify_api/rest/resources/2023_04/balance.rb,
lib/shopify_api/rest/resources/2023_07/balance.rb

Instance Attribute Summary

Attributes inherited from Rest::Base

#errors, #original_state

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Rest::Base

base_find, class_name, create_instance, create_instances_from_response, #delete, get_path, has_many?, has_one?, json_body_name, json_response_body_names, #method_missing, next_page?, next_page_info, prev_page?, prev_page_info, primary_key, read_only_attributes, request, #respond_to_missing?, #save, #save!, #to_hash

Constructor Details

#initialize(session: ShopifyAPI::Context.active_session) ⇒ Balance

Returns a new instance of Balance.



16
17
18
19
# File 'lib/shopify_api/rest/resources/2022_04/balance.rb', line 16

def initialize(session: ShopifyAPI::Context.active_session)
  super(session: session)

end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class ShopifyAPI::Rest::Base

Class Method Details

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



34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/shopify_api/rest/resources/2022_04/balance.rb', line 34

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

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