Class: Stripe::Issuing::DisputeCreateParams::Evidence::NotReceived
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Issuing::DisputeCreateParams::Evidence::NotReceived
- Defined in:
- lib/stripe/params/issuing/dispute_create_params.rb
Instance Attribute Summary collapse
-
#additional_documentation ⇒ Object
(ID of a [file upload](stripe.com/docs/guides/file-upload)) Additional documentation supporting the dispute.
-
#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.
Instance Method Summary collapse
-
#initialize(additional_documentation: nil, expected_at: nil, explanation: nil, product_description: nil, product_type: nil) ⇒ NotReceived
constructor
A new instance of NotReceived.
Methods inherited from RequestParams
Constructor Details
#initialize(additional_documentation: nil, expected_at: nil, explanation: nil, product_description: nil, product_type: nil) ⇒ NotReceived
Returns a new instance of NotReceived.
153 154 155 156 157 158 159 160 161 162 163 164 165 |
# File 'lib/stripe/params/issuing/dispute_create_params.rb', line 153 def initialize( additional_documentation: nil, expected_at: nil, explanation: nil, product_description: nil, product_type: nil ) @additional_documentation = additional_documentation @expected_at = expected_at @explanation = explanation @product_description = product_description @product_type = product_type end |
Instance Attribute Details
#additional_documentation ⇒ Object
(ID of a [file upload](stripe.com/docs/guides/file-upload)) Additional documentation supporting the dispute.
143 144 145 |
# File 'lib/stripe/params/issuing/dispute_create_params.rb', line 143 def additional_documentation @additional_documentation end |
#expected_at ⇒ Object
Date when the cardholder expected to receive the product.
145 146 147 |
# File 'lib/stripe/params/issuing/dispute_create_params.rb', line 145 def expected_at @expected_at end |
#explanation ⇒ Object
Explanation of why the cardholder is disputing this transaction.
147 148 149 |
# File 'lib/stripe/params/issuing/dispute_create_params.rb', line 147 def explanation @explanation end |
#product_description ⇒ Object
Description of the merchandise or service that was purchased.
149 150 151 |
# File 'lib/stripe/params/issuing/dispute_create_params.rb', line 149 def product_description @product_description end |
#product_type ⇒ Object
Whether the product was a merchandise or service.
151 152 153 |
# File 'lib/stripe/params/issuing/dispute_create_params.rb', line 151 def product_type @product_type end |