Class: ShopifyAPI::UsageCharge
- Inherits:
-
Rest::Base
- Object
- Rest::Base
- ShopifyAPI::UsageCharge
- Extended by:
- T::Sig
- Defined in:
- lib/shopify_api/rest/resources/2022_04/usage_charge.rb,
lib/shopify_api/rest/resources/2022_07/usage_charge.rb,
lib/shopify_api/rest/resources/2022_10/usage_charge.rb,
lib/shopify_api/rest/resources/2023_01/usage_charge.rb,
lib/shopify_api/rest/resources/2023_04/usage_charge.rb,
lib/shopify_api/rest/resources/2023_07/usage_charge.rb,
lib/shopify_api/rest/resources/2023_10/usage_charge.rb,
lib/shopify_api/rest/resources/2024_01/usage_charge.rb,
lib/shopify_api/rest/resources/2024_04/usage_charge.rb,
lib/shopify_api/rest/resources/2024_07/usage_charge.rb,
lib/shopify_api/rest/resources/2024_10/usage_charge.rb
Instance Attribute Summary collapse
-
#created_at ⇒ Object
readonly
Returns the value of attribute created_at.
-
#currency ⇒ Object
readonly
Returns the value of attribute currency.
-
#description ⇒ Object
readonly
Returns the value of attribute description.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#price ⇒ Object
readonly
Returns the value of attribute price.
-
#recurring_application_charge_id ⇒ Object
readonly
Returns the value of attribute recurring_application_charge_id.
-
#updated_at ⇒ Object
readonly
Returns the value of attribute updated_at.
Attributes inherited from Rest::Base
Class Method Summary collapse
- .all(recurring_application_charge_id: nil, fields: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
- .find(id:, recurring_application_charge_id: nil, fields: nil, session: ShopifyAPI::Context.active_session) ⇒ Object
Instance Method Summary collapse
-
#initialize(session: ShopifyAPI::Context.active_session, from_hash: nil) ⇒ UsageCharge
constructor
A new instance of UsageCharge.
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) ⇒ UsageCharge
Returns a new instance of UsageCharge.
19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/shopify_api/rest/resources/2022_04/usage_charge.rb', line 19 def initialize(session: ShopifyAPI::Context.active_session, from_hash: nil) @created_at = T.let(nil, T.nilable(String)) @currency = T.let(nil, T.nilable(Currency)) @description = T.let(nil, T.nilable(String)) @id = T.let(nil, T.nilable(Integer)) @price = T.let(nil, T.nilable(String)) @recurring_application_charge_id = T.let(nil, T.nilable(Integer)) @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
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at.
43 44 45 |
# File 'lib/shopify_api/rest/resources/2022_04/usage_charge.rb', line 43 def created_at @created_at end |
#currency ⇒ Object (readonly)
Returns the value of attribute currency.
45 46 47 |
# File 'lib/shopify_api/rest/resources/2022_04/usage_charge.rb', line 45 def currency @currency end |
#description ⇒ Object (readonly)
Returns the value of attribute description.
47 48 49 |
# File 'lib/shopify_api/rest/resources/2022_04/usage_charge.rb', line 47 def description @description end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
49 50 51 |
# File 'lib/shopify_api/rest/resources/2022_04/usage_charge.rb', line 49 def id @id end |
#price ⇒ Object (readonly)
Returns the value of attribute price.
51 52 53 |
# File 'lib/shopify_api/rest/resources/2022_04/usage_charge.rb', line 51 def price @price end |
#recurring_application_charge_id ⇒ Object (readonly)
Returns the value of attribute recurring_application_charge_id.
53 54 55 |
# File 'lib/shopify_api/rest/resources/2022_04/usage_charge.rb', line 53 def recurring_application_charge_id @recurring_application_charge_id end |
#updated_at ⇒ Object (readonly)
Returns the value of attribute updated_at.
55 56 57 |
# File 'lib/shopify_api/rest/resources/2022_04/usage_charge.rb', line 55 def updated_at @updated_at end |
Class Method Details
.all(recurring_application_charge_id: nil, fields: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
# File 'lib/shopify_api/rest/resources/2022_04/usage_charge.rb', line 88 def all( recurring_application_charge_id: nil, fields: nil, session: ShopifyAPI::Context.active_session, **kwargs ) response = base_find( session: session, ids: {recurring_application_charge_id: recurring_application_charge_id}, params: {fields: fields}.merge(kwargs).compact, ) T.cast(response, T::Array[UsageCharge]) end |
.find(id:, recurring_application_charge_id: nil, fields: nil, session: ShopifyAPI::Context.active_session) ⇒ Object
66 67 68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/shopify_api/rest/resources/2022_04/usage_charge.rb', line 66 def find( id:, recurring_application_charge_id: nil, fields: nil, session: ShopifyAPI::Context.active_session ) result = base_find( session: session, ids: {id: id, recurring_application_charge_id: recurring_application_charge_id}, params: {fields: fields}, ) T.cast(result[0], T.nilable(UsageCharge)) end |