Class: Stripe::Issuing::Dispute::UpdateParams::Evidence::Duplicate
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Issuing::Dispute::UpdateParams::Evidence::Duplicate
- Defined in:
- lib/stripe/resources/issuing/dispute.rb
Instance Attribute Summary collapse
-
#additional_documentation ⇒ Object
(ID of a [file upload](stripe.com/docs/guides/file-upload)) Additional documentation supporting the dispute.
-
#card_statement ⇒ Object
(ID of a [file upload](stripe.com/docs/guides/file-upload)) Copy of the card statement showing that the product had already been paid for.
-
#cash_receipt ⇒ Object
(ID of a [file upload](stripe.com/docs/guides/file-upload)) Copy of the receipt showing that the product had been paid for in cash.
-
#check_image ⇒ Object
(ID of a [file upload](stripe.com/docs/guides/file-upload)) Image of the front and back of the check that was used to pay for the product.
-
#explanation ⇒ Object
Explanation of why the cardholder is disputing this transaction.
-
#original_transaction ⇒ Object
Transaction (e.g., ipi_…) that the disputed transaction is a duplicate of.
Instance Method Summary collapse
-
#initialize(additional_documentation: nil, card_statement: nil, cash_receipt: nil, check_image: nil, explanation: nil, original_transaction: nil) ⇒ Duplicate
constructor
A new instance of Duplicate.
Methods inherited from RequestParams
Constructor Details
#initialize(additional_documentation: nil, card_statement: nil, cash_receipt: nil, check_image: nil, explanation: nil, original_transaction: nil) ⇒ Duplicate
Returns a new instance of Duplicate.
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 |
# File 'lib/stripe/resources/issuing/dispute.rb', line 556 def initialize( additional_documentation: nil, card_statement: nil, cash_receipt: nil, check_image: nil, explanation: nil, original_transaction: nil ) @additional_documentation = additional_documentation @card_statement = card_statement @cash_receipt = cash_receipt @check_image = check_image @explanation = explanation @original_transaction = original_transaction end |
Instance Attribute Details
#additional_documentation ⇒ Object
(ID of a [file upload](stripe.com/docs/guides/file-upload)) Additional documentation supporting the dispute.
544 545 546 |
# File 'lib/stripe/resources/issuing/dispute.rb', line 544 def additional_documentation @additional_documentation end |
#card_statement ⇒ Object
(ID of a [file upload](stripe.com/docs/guides/file-upload)) Copy of the card statement showing that the product had already been paid for.
546 547 548 |
# File 'lib/stripe/resources/issuing/dispute.rb', line 546 def card_statement @card_statement end |
#cash_receipt ⇒ Object
(ID of a [file upload](stripe.com/docs/guides/file-upload)) Copy of the receipt showing that the product had been paid for in cash.
548 549 550 |
# File 'lib/stripe/resources/issuing/dispute.rb', line 548 def cash_receipt @cash_receipt end |
#check_image ⇒ Object
(ID of a [file upload](stripe.com/docs/guides/file-upload)) Image of the front and back of the check that was used to pay for the product.
550 551 552 |
# File 'lib/stripe/resources/issuing/dispute.rb', line 550 def check_image @check_image end |
#explanation ⇒ Object
Explanation of why the cardholder is disputing this transaction.
552 553 554 |
# File 'lib/stripe/resources/issuing/dispute.rb', line 552 def explanation @explanation end |
#original_transaction ⇒ Object
Transaction (e.g., ipi_…) that the disputed transaction is a duplicate of. Of the two or more transactions that are copies of each other, this is original undisputed one.
554 555 556 |
# File 'lib/stripe/resources/issuing/dispute.rb', line 554 def original_transaction @original_transaction end |