Class: ShopifyAPI::DeprecatedApiCall
- Inherits:
-
Rest::Base
- Object
- Rest::Base
- ShopifyAPI::DeprecatedApiCall
- 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,
lib/shopify_api/rest/resources/2023_10/deprecated_api_call.rb,
lib/shopify_api/rest/resources/2024_01/deprecated_api_call.rb,
lib/shopify_api/rest/resources/2024_04/deprecated_api_call.rb,
lib/shopify_api/rest/resources/2024_07/deprecated_api_call.rb,
lib/shopify_api/rest/resources/2024_10/deprecated_api_call.rb,
lib/shopify_api/rest/resources/2025_01/deprecated_api_call.rb,
lib/shopify_api/rest/resources/2025_04/deprecated_api_call.rb,
lib/shopify_api/rest/resources/2025_07/deprecated_api_call.rb,
lib/shopify_api/rest/resources/2025_10/deprecated_api_call.rb,
lib/shopify_api/rest/resources/2026_01/deprecated_api_call.rb,
lib/shopify_api/rest/resources/2026_04/deprecated_api_call.rb,
lib/shopify_api/rest/resources/2026_07/deprecated_api_call.rb
Instance Attribute Summary collapse
-
#data_updated_at ⇒ Object
readonly
Returns the value of attribute data_updated_at.
-
#deprecated_api_calls ⇒ Object
readonly
Returns the value of attribute deprecated_api_calls.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(session: ShopifyAPI::Context.active_session, from_hash: nil) ⇒ DeprecatedApiCall
constructor
A new instance of DeprecatedApiCall.
Constructor Details
#initialize(session: ShopifyAPI::Context.active_session, from_hash: nil) ⇒ DeprecatedApiCall
Returns a new instance of DeprecatedApiCall.
19 20 21 22 23 24 25 |
# File 'lib/shopify_api/rest/resources/2022_04/deprecated_api_call.rb', line 19 def initialize(session: ShopifyAPI::Context.active_session, from_hash: nil) @data_updated_at = T.let(nil, T.nilable(String)) @deprecated_api_calls = T.let(nil, T.nilable(T::Array[T.untyped])) super(session: session, from_hash: from_hash) end |
Instance Attribute Details
#data_updated_at ⇒ Object (readonly)
Returns the value of attribute data_updated_at.
34 35 36 |
# File 'lib/shopify_api/rest/resources/2022_04/deprecated_api_call.rb', line 34 def data_updated_at @data_updated_at end |
#deprecated_api_calls ⇒ Object (readonly)
Returns the value of attribute deprecated_api_calls.
36 37 38 |
# File 'lib/shopify_api/rest/resources/2022_04/deprecated_api_call.rb', line 36 def deprecated_api_calls @deprecated_api_calls end |
Class Method Details
.all(session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/shopify_api/rest/resources/2022_04/deprecated_api_call.rb', line 45 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 |