Class: Stripe::Dispute::EvidenceDetails
- Inherits:
-
StripeObject
- Object
- StripeObject
- Stripe::Dispute::EvidenceDetails
- Defined in:
- lib/stripe/resources/dispute.rb
Defined Under Namespace
Classes: EnhancedEligibility
Constant Summary
Constants inherited from StripeObject
StripeObject::RESERVED_FIELD_NAMES
Instance Attribute Summary collapse
-
#due_by ⇒ Object
readonly
Date by which evidence must be submitted in order to successfully challenge dispute.
-
#enhanced_eligibility ⇒ Object
readonly
Attribute for field enhanced_eligibility.
-
#has_evidence ⇒ Object
readonly
Whether evidence has been staged for this dispute.
-
#past_due ⇒ Object
readonly
Whether the last evidence submission was submitted past the due date.
-
#submission_count ⇒ Object
readonly
The number of times evidence has been submitted.
Attributes inherited from StripeObject
Method Summary
Methods inherited from StripeObject
#==, #[], #[]=, additive_object_param, additive_object_param?, #as_json, construct_from, #deleted?, #dirty!, #each, #eql?, #hash, #initialize, #inspect, #keys, #marshal_dump, #marshal_load, protected_fields, #serialize_params, #to_hash, #to_json, #to_s, #update_attributes, #values
Constructor Details
This class inherits a constructor from Stripe::StripeObject
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Stripe::StripeObject
Instance Attribute Details
#due_by ⇒ Object (readonly)
Date by which evidence must be submitted in order to successfully challenge dispute. Will be 0 if the customer’s bank or credit card company doesn’t allow a response for this particular dispute.
179 180 181 |
# File 'lib/stripe/resources/dispute.rb', line 179 def due_by @due_by end |
#enhanced_eligibility ⇒ Object (readonly)
Attribute for field enhanced_eligibility
181 182 183 |
# File 'lib/stripe/resources/dispute.rb', line 181 def enhanced_eligibility @enhanced_eligibility end |
#has_evidence ⇒ Object (readonly)
Whether evidence has been staged for this dispute.
183 184 185 |
# File 'lib/stripe/resources/dispute.rb', line 183 def has_evidence @has_evidence end |
#past_due ⇒ Object (readonly)
Whether the last evidence submission was submitted past the due date. Defaults to ‘false` if no evidence submissions have occurred. If `true`, then delivery of the latest evidence is not guaranteed.
185 186 187 |
# File 'lib/stripe/resources/dispute.rb', line 185 def past_due @past_due end |
#submission_count ⇒ Object (readonly)
The number of times evidence has been submitted. Typically, you may only submit evidence once.
187 188 189 |
# File 'lib/stripe/resources/dispute.rb', line 187 def submission_count @submission_count end |