Class: ShopifyAPI::ApplicationCharge
- Inherits:
-
Rest::Base
- Object
- Rest::Base
- ShopifyAPI::ApplicationCharge
- Extended by:
- T::Sig
- Defined in:
- lib/shopify_api/rest/resources/2022_01/application_charge.rb,
lib/shopify_api/rest/resources/2022_04/application_charge.rb,
lib/shopify_api/rest/resources/2022_07/application_charge.rb,
lib/shopify_api/rest/resources/2022_10/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.
16 17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 16 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.
39 40 41 |
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 39 def confirmation_url @confirmation_url end |
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at.
41 42 43 |
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 41 def created_at @created_at end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
43 44 45 |
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 43 def id @id end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
45 46 47 |
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 45 def name @name end |
#price ⇒ Object (readonly)
Returns the value of attribute price.
47 48 49 |
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 47 def price @price end |
#return_url ⇒ Object (readonly)
Returns the value of attribute return_url.
49 50 51 |
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 49 def return_url @return_url end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
51 52 53 |
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 51 def status @status end |
#test ⇒ Object (readonly)
Returns the value of attribute test.
53 54 55 |
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 53 def test @test end |
#updated_at ⇒ Object (readonly)
Returns the value of attribute updated_at.
55 56 57 |
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 55 def updated_at @updated_at end |
Class Method Details
.all(since_id: nil, fields: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 86 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
65 66 67 68 69 70 71 72 73 74 75 76 |
# File 'lib/shopify_api/rest/resources/2022_01/application_charge.rb', line 65 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 |