Class: ShopifyAPI::Province
- Inherits:
-
Rest::Base
- Object
- Rest::Base
- ShopifyAPI::Province
- Extended by:
- T::Sig
- Defined in:
- lib/shopify_api/rest/resources/2022_04/province.rb,
lib/shopify_api/rest/resources/2022_07/province.rb,
lib/shopify_api/rest/resources/2022_10/province.rb,
lib/shopify_api/rest/resources/2023_01/province.rb,
lib/shopify_api/rest/resources/2023_04/province.rb,
lib/shopify_api/rest/resources/2023_07/province.rb,
lib/shopify_api/rest/resources/2023_10/province.rb,
lib/shopify_api/rest/resources/2024_01/province.rb,
lib/shopify_api/rest/resources/2024_04/province.rb,
lib/shopify_api/rest/resources/2024_07/province.rb,
lib/shopify_api/rest/resources/2024_10/province.rb
Instance Attribute Summary collapse
-
#code ⇒ Object
readonly
Returns the value of attribute code.
-
#country_id ⇒ Object
readonly
Returns the value of attribute country_id.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#shipping_zone_id ⇒ Object
readonly
Returns the value of attribute shipping_zone_id.
-
#tax ⇒ Object
readonly
Returns the value of attribute tax.
-
#tax_name ⇒ Object
readonly
Returns the value of attribute tax_name.
-
#tax_percentage ⇒ Object
readonly
Returns the value of attribute tax_percentage.
-
#tax_type ⇒ Object
readonly
Returns the value of attribute tax_type.
Attributes inherited from Rest::Base
Class Method Summary collapse
- .all(country_id: nil, since_id: nil, fields: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
- .count(country_id: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
- .find(id:, country_id: nil, fields: nil, session: ShopifyAPI::Context.active_session) ⇒ Object
Instance Method Summary collapse
-
#initialize(session: ShopifyAPI::Context.active_session, from_hash: nil) ⇒ Province
constructor
A new instance of Province.
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) ⇒ Province
Returns a new instance of Province.
19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/shopify_api/rest/resources/2022_04/province.rb', line 19 def initialize(session: ShopifyAPI::Context.active_session, from_hash: nil) @code = T.let(nil, T.nilable(String)) @country_id = T.let(nil, T.nilable(Integer)) @id = T.let(nil, T.nilable(Integer)) @name = T.let(nil, T.nilable(String)) @shipping_zone_id = T.let(nil, T.nilable(Integer)) @tax = T.let(nil, T.nilable(Float)) @tax_name = T.let(nil, T.nilable(String)) @tax_percentage = T.let(nil, T.nilable(Float)) @tax_type = 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
#code ⇒ Object (readonly)
Returns the value of attribute code.
44 45 46 |
# File 'lib/shopify_api/rest/resources/2022_04/province.rb', line 44 def code @code end |
#country_id ⇒ Object (readonly)
Returns the value of attribute country_id.
46 47 48 |
# File 'lib/shopify_api/rest/resources/2022_04/province.rb', line 46 def country_id @country_id end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
48 49 50 |
# File 'lib/shopify_api/rest/resources/2022_04/province.rb', line 48 def id @id end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
50 51 52 |
# File 'lib/shopify_api/rest/resources/2022_04/province.rb', line 50 def name @name end |
#shipping_zone_id ⇒ Object (readonly)
Returns the value of attribute shipping_zone_id.
52 53 54 |
# File 'lib/shopify_api/rest/resources/2022_04/province.rb', line 52 def shipping_zone_id @shipping_zone_id end |
#tax ⇒ Object (readonly)
Returns the value of attribute tax.
54 55 56 |
# File 'lib/shopify_api/rest/resources/2022_04/province.rb', line 54 def tax @tax end |
#tax_name ⇒ Object (readonly)
Returns the value of attribute tax_name.
56 57 58 |
# File 'lib/shopify_api/rest/resources/2022_04/province.rb', line 56 def tax_name @tax_name end |
#tax_percentage ⇒ Object (readonly)
Returns the value of attribute tax_percentage.
58 59 60 |
# File 'lib/shopify_api/rest/resources/2022_04/province.rb', line 58 def tax_percentage @tax_percentage end |
#tax_type ⇒ Object (readonly)
Returns the value of attribute tax_type.
60 61 62 |
# File 'lib/shopify_api/rest/resources/2022_04/province.rb', line 60 def tax_type @tax_type end |
Class Method Details
.all(country_id: nil, since_id: nil, fields: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/shopify_api/rest/resources/2022_04/province.rb', line 94 def all( country_id: nil, since_id: nil, fields: nil, session: ShopifyAPI::Context.active_session, **kwargs ) response = base_find( session: session, ids: {country_id: country_id}, params: {since_id: since_id, fields: fields}.merge(kwargs).compact, ) T.cast(response, T::Array[Province]) end |
.count(country_id: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 |
# File 'lib/shopify_api/rest/resources/2022_04/province.rb', line 117 def count( country_id: nil, session: ShopifyAPI::Context.active_session, **kwargs ) request( http_method: :get, operation: :count, session: session, ids: {country_id: country_id}, params: {}.merge(kwargs).compact, body: {}, entity: nil, ) end |
.find(id:, country_id: nil, fields: nil, session: ShopifyAPI::Context.active_session) ⇒ Object
71 72 73 74 75 76 77 78 79 80 81 82 83 |
# File 'lib/shopify_api/rest/resources/2022_04/province.rb', line 71 def find( id:, country_id: nil, fields: nil, session: ShopifyAPI::Context.active_session ) result = base_find( session: session, ids: {id: id, country_id: country_id}, params: {fields: fields}, ) T.cast(result[0], T.nilable(Province)) end |