Class: ShopifyAPI::LocationsForMove
- Inherits:
-
Rest::Base
- Object
- Rest::Base
- ShopifyAPI::LocationsForMove
- Extended by:
- T::Sig
- Defined in:
- lib/shopify_api/rest/resources/2022_04/locations_for_move.rb,
lib/shopify_api/rest/resources/2022_07/locations_for_move.rb,
lib/shopify_api/rest/resources/2022_10/locations_for_move.rb,
lib/shopify_api/rest/resources/2023_01/locations_for_move.rb,
lib/shopify_api/rest/resources/2023_04/locations_for_move.rb,
lib/shopify_api/rest/resources/2023_07/locations_for_move.rb,
lib/shopify_api/rest/resources/2023_10/locations_for_move.rb,
lib/shopify_api/rest/resources/2024_01/locations_for_move.rb,
lib/shopify_api/rest/resources/2024_04/locations_for_move.rb,
lib/shopify_api/rest/resources/2024_07/locations_for_move.rb,
lib/shopify_api/rest/resources/2024_10/locations_for_move.rb
Instance Attribute Summary collapse
-
#locations_for_move ⇒ Object
readonly
Returns the value of attribute locations_for_move.
Attributes inherited from Rest::Base
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(session: ShopifyAPI::Context.active_session, from_hash: nil) ⇒ LocationsForMove
constructor
A new instance of LocationsForMove.
Methods inherited from Rest::Base
api_call_limit, base_find, class_name, create_instance, create_instances_from_response, #delete, get_path, get_path_ids, has_many?, has_one?, inherited, 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?, retry_request_after, #save, #save!, #to_hash
Constructor Details
#initialize(session: ShopifyAPI::Context.active_session, from_hash: nil) ⇒ LocationsForMove
Returns a new instance of LocationsForMove.
19 20 21 22 23 24 |
# File 'lib/shopify_api/rest/resources/2022_04/locations_for_move.rb', line 19 def initialize(session: ShopifyAPI::Context.active_session, from_hash: nil) @locations_for_move = T.let(nil, T.nilable(T::Array[T.untyped])) super(session: session, from_hash: from_hash) end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class ShopifyAPI::Rest::Base
Instance Attribute Details
#locations_for_move ⇒ Object (readonly)
Returns the value of attribute locations_for_move.
33 34 35 |
# File 'lib/shopify_api/rest/resources/2022_04/locations_for_move.rb', line 33 def locations_for_move @locations_for_move end |
Class Method Details
.all(fulfillment_order_id: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/shopify_api/rest/resources/2022_04/locations_for_move.rb', line 43 def all( fulfillment_order_id: nil, session: ShopifyAPI::Context.active_session, **kwargs ) response = base_find( session: session, ids: {fulfillment_order_id: fulfillment_order_id}, params: {}.merge(kwargs).compact, ) T.cast(response, T::Array[LocationsForMove]) end |