Class: Stripe::Issuing::DisputeService::CreateParams::Evidence::Canceled
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Issuing::DisputeService::CreateParams::Evidence::Canceled
- Defined in:
- lib/stripe/services/issuing/dispute_service.rb
Instance Attribute Summary collapse
-
#additional_documentation ⇒ Object
(ID of a [file upload](stripe.com/docs/guides/file-upload)) Additional documentation supporting the dispute.
-
#canceled_at ⇒ Object
Date when order was canceled.
-
#cancellation_policy_provided ⇒ Object
Whether the cardholder was provided with a cancellation policy.
-
#cancellation_reason ⇒ Object
Reason for canceling the order.
-
#expected_at ⇒ Object
Date when the cardholder expected to receive the product.
-
#explanation ⇒ Object
Explanation of why the cardholder is disputing this transaction.
-
#product_description ⇒ Object
Description of the merchandise or service that was purchased.
-
#product_type ⇒ Object
Whether the product was a merchandise or service.
-
#return_status ⇒ Object
Result of cardholder’s attempt to return the product.
-
#returned_at ⇒ Object
Date when the product was returned or attempted to be returned.
Instance Method Summary collapse
-
#initialize(additional_documentation: nil, canceled_at: nil, cancellation_policy_provided: nil, cancellation_reason: nil, expected_at: nil, explanation: nil, product_description: nil, product_type: nil, return_status: nil, returned_at: nil) ⇒ Canceled
constructor
A new instance of Canceled.
Methods inherited from RequestParams
Constructor Details
#initialize(additional_documentation: nil, canceled_at: nil, cancellation_policy_provided: nil, cancellation_reason: nil, expected_at: nil, explanation: nil, product_description: nil, product_type: nil, return_status: nil, returned_at: nil) ⇒ Canceled
Returns a new instance of Canceled.
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 83 def initialize( additional_documentation: nil, canceled_at: nil, cancellation_policy_provided: nil, cancellation_reason: nil, expected_at: nil, explanation: nil, product_description: nil, product_type: nil, return_status: nil, returned_at: nil ) @additional_documentation = additional_documentation @canceled_at = canceled_at @cancellation_policy_provided = cancellation_policy_provided @cancellation_reason = cancellation_reason @expected_at = expected_at @explanation = explanation @product_description = product_description @product_type = product_type @return_status = return_status @returned_at = returned_at end |
Instance Attribute Details
#additional_documentation ⇒ Object
(ID of a [file upload](stripe.com/docs/guides/file-upload)) Additional documentation supporting the dispute.
63 64 65 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 63 def additional_documentation @additional_documentation end |
#canceled_at ⇒ Object
Date when order was canceled.
65 66 67 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 65 def canceled_at @canceled_at end |
#cancellation_policy_provided ⇒ Object
Whether the cardholder was provided with a cancellation policy.
67 68 69 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 67 def cancellation_policy_provided @cancellation_policy_provided end |
#cancellation_reason ⇒ Object
Reason for canceling the order.
69 70 71 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 69 def cancellation_reason @cancellation_reason end |
#expected_at ⇒ Object
Date when the cardholder expected to receive the product.
71 72 73 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 71 def expected_at @expected_at end |
#explanation ⇒ Object
Explanation of why the cardholder is disputing this transaction.
73 74 75 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 73 def explanation @explanation end |
#product_description ⇒ Object
Description of the merchandise or service that was purchased.
75 76 77 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 75 def product_description @product_description end |
#product_type ⇒ Object
Whether the product was a merchandise or service.
77 78 79 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 77 def product_type @product_type end |
#return_status ⇒ Object
Result of cardholder’s attempt to return the product.
79 80 81 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 79 def return_status @return_status end |
#returned_at ⇒ Object
Date when the product was returned or attempted to be returned.
81 82 83 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 81 def returned_at @returned_at end |