Class: ShopifyAPI::Currency
- Inherits:
-
Rest::Base
- Object
- Rest::Base
- ShopifyAPI::Currency
- Extended by:
- T::Sig
- Defined in:
- lib/shopify_api/rest/resources/2022_04/currency.rb,
lib/shopify_api/rest/resources/2022_07/currency.rb,
lib/shopify_api/rest/resources/2022_10/currency.rb,
lib/shopify_api/rest/resources/2023_01/currency.rb,
lib/shopify_api/rest/resources/2023_04/currency.rb,
lib/shopify_api/rest/resources/2023_07/currency.rb,
lib/shopify_api/rest/resources/2023_10/currency.rb,
lib/shopify_api/rest/resources/2024_01/currency.rb,
lib/shopify_api/rest/resources/2024_04/currency.rb,
lib/shopify_api/rest/resources/2024_07/currency.rb,
lib/shopify_api/rest/resources/2024_10/currency.rb
Instance Attribute Summary collapse
-
#currency ⇒ Object
readonly
Returns the value of attribute currency.
-
#rate_updated_at ⇒ Object
readonly
Returns the value of attribute rate_updated_at.
Attributes inherited from Rest::Base
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(session: ShopifyAPI::Context.active_session, from_hash: nil) ⇒ Currency
constructor
A new instance of Currency.
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) ⇒ Currency
Returns a new instance of Currency.
19 20 21 22 23 24 25 |
# File 'lib/shopify_api/rest/resources/2022_04/currency.rb', line 19 def initialize(session: ShopifyAPI::Context.active_session, from_hash: nil) @currency = T.let(nil, T.nilable(String)) @rate_updated_at = T.let(nil, T.nilable(String)) 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
#currency ⇒ Object (readonly)
Returns the value of attribute currency.
34 35 36 |
# File 'lib/shopify_api/rest/resources/2022_04/currency.rb', line 34 def currency @currency end |
#rate_updated_at ⇒ Object (readonly)
Returns the value of attribute rate_updated_at.
36 37 38 |
# File 'lib/shopify_api/rest/resources/2022_04/currency.rb', line 36 def rate_updated_at @rate_updated_at 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/currency.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[Currency]) end |