Class: Stripe::Issuing::DisputeService::UpdateParams::Evidence::Canceled
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Issuing::DisputeService::UpdateParams::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.
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 383 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.
363 364 365 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 363 def additional_documentation @additional_documentation end |
#canceled_at ⇒ Object
Date when order was canceled.
365 366 367 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 365 def canceled_at @canceled_at end |
#cancellation_policy_provided ⇒ Object
Whether the cardholder was provided with a cancellation policy.
367 368 369 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 367 def cancellation_policy_provided @cancellation_policy_provided end |
#cancellation_reason ⇒ Object
Reason for canceling the order.
369 370 371 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 369 def cancellation_reason @cancellation_reason end |
#expected_at ⇒ Object
Date when the cardholder expected to receive the product.
371 372 373 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 371 def expected_at @expected_at end |
#explanation ⇒ Object
Explanation of why the cardholder is disputing this transaction.
373 374 375 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 373 def explanation @explanation end |
#product_description ⇒ Object
Description of the merchandise or service that was purchased.
375 376 377 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 375 def product_description @product_description end |
#product_type ⇒ Object
Whether the product was a merchandise or service.
377 378 379 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 377 def product_type @product_type end |
#return_status ⇒ Object
Result of cardholder’s attempt to return the product.
379 380 381 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 379 def return_status @return_status end |
#returned_at ⇒ Object
Date when the product was returned or attempted to be returned.
381 382 383 |
# File 'lib/stripe/services/issuing/dispute_service.rb', line 381 def returned_at @returned_at end |