Class: ShopifyAPI::ApplicationCharge
- Inherits:
-
Rest::Base
- Object
- Rest::Base
- ShopifyAPI::ApplicationCharge
- Extended by:
- T::Sig
- Defined in:
- lib/shopify_api/rest/resources/2021_07/application_charge.rb,
lib/shopify_api/rest/resources/2021_10/application_charge.rb,
lib/shopify_api/rest/resources/2022_01/application_charge.rb,
lib/shopify_api/rest/resources/2022_04/application_charge.rb
Instance Attribute Summary collapse
-
#confirmation_url ⇒ Object
readonly
Returns the value of attribute confirmation_url.
-
#created_at ⇒ Object
readonly
Returns the value of attribute created_at.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#price ⇒ Object
readonly
Returns the value of attribute price.
-
#return_url ⇒ Object
readonly
Returns the value of attribute return_url.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
-
#test ⇒ Object
readonly
Returns the value of attribute test.
-
#updated_at ⇒ Object
readonly
Returns the value of attribute updated_at.
Attributes inherited from Rest::Base
Class Method Summary collapse
- .all(since_id: nil, fields: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
- .find(id:, fields: nil, session: ShopifyAPI::Context.active_session) ⇒ Object
Instance Method Summary collapse
-
#initialize(session: ShopifyAPI::Context.active_session) ⇒ ApplicationCharge
constructor
A new instance of ApplicationCharge.
Methods inherited from Rest::Base
base_find, class_name, create_instance, create_instances_from_response, #delete, get_path, has_many?, has_one?, json_body_name, #method_missing, next_page?, next_page_info, prev_page?, prev_page_info, primary_key, read_only_attributes, request, #respond_to_missing?, #save, #save!, #to_hash
Constructor Details
#initialize(session: ShopifyAPI::Context.active_session) ⇒ ApplicationCharge
Returns a new instance of ApplicationCharge.
12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/shopify_api/rest/resources/2021_07/application_charge.rb', line 12 def initialize(session: ShopifyAPI::Context.active_session) super(session: session) @confirmation_url = T.let(nil, T.nilable(String)) @created_at = T.let(nil, T.nilable(String)) @id = T.let(nil, T.nilable(Integer)) @name = T.let(nil, T.nilable(String)) @price = T.let(nil, T.nilable(T.any(String, Float))) @return_url = T.let(nil, T.nilable(String)) @status = T.let(nil, T.nilable(String)) @test = T.let(nil, T.nilable(T::Boolean)) @updated_at = T.let(nil, T.nilable(String)) end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class ShopifyAPI::Rest::Base
Instance Attribute Details
#confirmation_url ⇒ Object (readonly)
Returns the value of attribute confirmation_url.
35 36 37 |
# File 'lib/shopify_api/rest/resources/2021_07/application_charge.rb', line 35 def confirmation_url @confirmation_url end |
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at.
37 38 39 |
# File 'lib/shopify_api/rest/resources/2021_07/application_charge.rb', line 37 def created_at @created_at end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
39 40 41 |
# File 'lib/shopify_api/rest/resources/2021_07/application_charge.rb', line 39 def id @id end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
41 42 43 |
# File 'lib/shopify_api/rest/resources/2021_07/application_charge.rb', line 41 def name @name end |
#price ⇒ Object (readonly)
Returns the value of attribute price.
43 44 45 |
# File 'lib/shopify_api/rest/resources/2021_07/application_charge.rb', line 43 def price @price end |
#return_url ⇒ Object (readonly)
Returns the value of attribute return_url.
45 46 47 |
# File 'lib/shopify_api/rest/resources/2021_07/application_charge.rb', line 45 def return_url @return_url end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
47 48 49 |
# File 'lib/shopify_api/rest/resources/2021_07/application_charge.rb', line 47 def status @status end |
#test ⇒ Object (readonly)
Returns the value of attribute test.
49 50 51 |
# File 'lib/shopify_api/rest/resources/2021_07/application_charge.rb', line 49 def test @test end |
#updated_at ⇒ Object (readonly)
Returns the value of attribute updated_at.
51 52 53 |
# File 'lib/shopify_api/rest/resources/2021_07/application_charge.rb', line 51 def updated_at @updated_at end |
Class Method Details
.all(since_id: nil, fields: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
# File 'lib/shopify_api/rest/resources/2021_07/application_charge.rb', line 82 def all( since_id: nil, fields: nil, session: ShopifyAPI::Context.active_session, **kwargs ) response = base_find( session: session, ids: {}, params: {since_id: since_id, fields: fields}.merge(kwargs).compact, ) T.cast(response, T::Array[ApplicationCharge]) end |
.find(id:, fields: nil, session: ShopifyAPI::Context.active_session) ⇒ Object
61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/shopify_api/rest/resources/2021_07/application_charge.rb', line 61 def find( id:, fields: nil, session: ShopifyAPI::Context.active_session ) result = base_find( session: session, ids: {id: id}, params: {fields: fields}, ) T.cast(result[0], T.nilable(ApplicationCharge)) end |