Class: MangoModel::DisputeDocument
- Inherits:
-
EntityBase
- Object
- EntityBase
- MangoModel::DisputeDocument
- Includes:
- MangoPay::Jsonifier
- Defined in:
- lib/mangopay/model/entity/dispute_document.rb
Overview
Dispute Document entity A Dispute Document must be created in order to upload pages of a document pertaining to a certain dispute.
Constant Summary
Constants included from MangoPay::Jsonifier
Instance Attribute Summary collapse
-
#dispute_id ⇒ Object
- String
-
ID of the corresponding dispute.
-
#processed_date ⇒ Object
- Integer
-
Time when the document was processed (UNIX timestamp).
-
#refused_reason_message ⇒ Object
- String
-
Explanation of its refusal.
-
#refused_reason_type ⇒ Object
- DisputeDocRefusedReasonType
-
Type of its refusal reason.
-
#status ⇒ Object
- DocumentStatus
-
Its status.
-
#type ⇒ Object
- DisputeDocumentType
-
Its type.
Attributes inherited from EntityBase
Method Summary
Methods included from MangoPay::Jsonifier
Methods included from NonInstantiable
Instance Attribute Details
#dispute_id ⇒ Object
- String
-
ID of the corresponding dispute
12 13 14 |
# File 'lib/mangopay/model/entity/dispute_document.rb', line 12 def dispute_id @dispute_id end |
#processed_date ⇒ Object
- Integer
-
Time when the document was processed (UNIX timestamp)
27 28 29 |
# File 'lib/mangopay/model/entity/dispute_document.rb', line 27 def processed_date @processed_date end |
#refused_reason_message ⇒ Object
- String
-
Explanation of its refusal
24 25 26 |
# File 'lib/mangopay/model/entity/dispute_document.rb', line 24 def @refused_reason_message end |
#refused_reason_type ⇒ Object
- DisputeDocRefusedReasonType
-
Type of its refusal reason
21 22 23 |
# File 'lib/mangopay/model/entity/dispute_document.rb', line 21 def refused_reason_type @refused_reason_type end |
#status ⇒ Object
- DocumentStatus
-
Its status
15 16 17 |
# File 'lib/mangopay/model/entity/dispute_document.rb', line 15 def status @status end |
#type ⇒ Object
- DisputeDocumentType
-
Its type
18 19 20 |
# File 'lib/mangopay/model/entity/dispute_document.rb', line 18 def type @type end |