Class: ShopifyAPI::Payment
- Inherits:
-
Rest::Base
- Object
- Rest::Base
- ShopifyAPI::Payment
- Extended by:
- T::Sig
- Defined in:
- lib/shopify_api/rest/resources/2022_04/payment.rb,
lib/shopify_api/rest/resources/2022_07/payment.rb,
lib/shopify_api/rest/resources/2022_10/payment.rb,
lib/shopify_api/rest/resources/2023_01/payment.rb,
lib/shopify_api/rest/resources/2023_04/payment.rb,
lib/shopify_api/rest/resources/2023_07/payment.rb,
lib/shopify_api/rest/resources/2023_10/payment.rb,
lib/shopify_api/rest/resources/2024_01/payment.rb,
lib/shopify_api/rest/resources/2024_04/payment.rb,
lib/shopify_api/rest/resources/2024_07/payment.rb,
lib/shopify_api/rest/resources/2024_10/payment.rb
Instance Attribute Summary collapse
-
#checkout ⇒ Object
readonly
Returns the value of attribute checkout.
-
#credit_card ⇒ Object
readonly
Returns the value of attribute credit_card.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#next_action ⇒ Object
readonly
Returns the value of attribute next_action.
-
#payment_processing_error_message ⇒ Object
readonly
Returns the value of attribute payment_processing_error_message.
-
#transaction ⇒ Object
readonly
Returns the value of attribute transaction.
-
#unique_token ⇒ Object
readonly
Returns the value of attribute unique_token.
Attributes inherited from Rest::Base
Class Method Summary collapse
- .all(checkout_id: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
- .count(checkout_id: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
- .find(id:, checkout_id: nil, session: ShopifyAPI::Context.active_session) ⇒ Object
Instance Method Summary collapse
- #checkout_id ⇒ Object
- #checkout_id=(val) ⇒ Object
-
#initialize(session: ShopifyAPI::Context.active_session, from_hash: nil) ⇒ Payment
constructor
A new instance of Payment.
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) ⇒ Payment
Returns a new instance of Payment.
19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/shopify_api/rest/resources/2022_04/payment.rb', line 19 def initialize(session: ShopifyAPI::Context.active_session, from_hash: nil) @checkout = T.let(nil, T.nilable(Checkout)) @credit_card = T.let(nil, T.nilable(T::Hash[T.untyped, T.untyped])) @id = T.let(nil, T.nilable(Integer)) @next_action = T.let(nil, T.nilable(T::Hash[T.untyped, T.untyped])) @payment_processing_error_message = T.let(nil, T.nilable(String)) @transaction = T.let(nil, T.nilable(Transaction)) @unique_token = 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
#checkout ⇒ Object (readonly)
Returns the value of attribute checkout.
45 46 47 |
# File 'lib/shopify_api/rest/resources/2022_04/payment.rb', line 45 def checkout @checkout end |
#credit_card ⇒ Object (readonly)
Returns the value of attribute credit_card.
47 48 49 |
# File 'lib/shopify_api/rest/resources/2022_04/payment.rb', line 47 def credit_card @credit_card end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
49 50 51 |
# File 'lib/shopify_api/rest/resources/2022_04/payment.rb', line 49 def id @id end |
#next_action ⇒ Object (readonly)
Returns the value of attribute next_action.
51 52 53 |
# File 'lib/shopify_api/rest/resources/2022_04/payment.rb', line 51 def next_action @next_action end |
#payment_processing_error_message ⇒ Object (readonly)
Returns the value of attribute payment_processing_error_message.
53 54 55 |
# File 'lib/shopify_api/rest/resources/2022_04/payment.rb', line 53 def @payment_processing_error_message end |
#transaction ⇒ Object (readonly)
Returns the value of attribute transaction.
55 56 57 |
# File 'lib/shopify_api/rest/resources/2022_04/payment.rb', line 55 def transaction @transaction end |
#unique_token ⇒ Object (readonly)
Returns the value of attribute unique_token.
57 58 59 |
# File 'lib/shopify_api/rest/resources/2022_04/payment.rb', line 57 def unique_token @unique_token end |
Class Method Details
.all(checkout_id: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
87 88 89 90 91 92 93 94 95 96 97 98 99 |
# File 'lib/shopify_api/rest/resources/2022_04/payment.rb', line 87 def all( checkout_id: nil, session: ShopifyAPI::Context.active_session, **kwargs ) response = base_find( session: session, ids: {checkout_id: checkout_id}, params: {}.merge(kwargs).compact, ) T.cast(response, T::Array[Payment]) end |
.count(checkout_id: nil, session: ShopifyAPI::Context.active_session, **kwargs) ⇒ Object
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'lib/shopify_api/rest/resources/2022_04/payment.rb', line 108 def count( checkout_id: nil, session: ShopifyAPI::Context.active_session, **kwargs ) request( http_method: :get, operation: :count, session: session, ids: {checkout_id: checkout_id}, params: {}.merge(kwargs).compact, body: {}, entity: nil, ) end |
.find(id:, checkout_id: nil, session: ShopifyAPI::Context.active_session) ⇒ Object
67 68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/shopify_api/rest/resources/2022_04/payment.rb', line 67 def find( id:, checkout_id: nil, session: ShopifyAPI::Context.active_session ) result = base_find( session: session, ids: {id: id, checkout_id: checkout_id}, params: {}, ) T.cast(result[0], T.nilable(Payment)) end |
Instance Method Details
#checkout_id ⇒ Object
129 130 131 |
# File 'lib/shopify_api/rest/resources/2022_04/payment.rb', line 129 def checkout_id() @checkout&.token end |