Class: ShopifyAPI::DeprecatedApiCall

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

Instance Attribute Summary collapse

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) ⇒ DeprecatedApiCall

Returns a new instance of DeprecatedApiCall.



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

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

  @data_updated_at = T.let(nil, T.nilable(String))
  @deprecated_api_calls = T.let(nil, T.nilable(T::Array[T.untyped]))
end

Dynamic Method Handling

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

Instance Attribute Details

#data_updated_atObject (readonly)

Returns the value of attribute data_updated_at.



30
31
32
# File 'lib/shopify_api/rest/resources/2022_04/deprecated_api_call.rb', line 30

def data_updated_at
  @data_updated_at
end

#deprecated_api_callsObject (readonly)

Returns the value of attribute deprecated_api_calls.



32
33
34
# File 'lib/shopify_api/rest/resources/2022_04/deprecated_api_call.rb', line 32

def deprecated_api_calls
  @deprecated_api_calls
end

Class Method Details

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



41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/shopify_api/rest/resources/2022_04/deprecated_api_call.rb', line 41

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

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