Class: Increase::Models::Document
- Defined in:
- lib/increase/models/document.rb
Instance Attribute Summary collapse
-
#category ⇒ Symbol
The type of document.
-
#created_at ⇒ String
The ISO 8601 time at which the Document was created.
-
#entity_id ⇒ String
The identifier of the Entity the document was generated for.
-
#file_id ⇒ String
The identifier of the File containing the Document's contents.
-
#id ⇒ String
The Document identifier.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#category ⇒ Symbol
The type of document.
14 |
# File 'lib/increase/models/document.rb', line 14 required :category, Increase::Enum.new(:form_1099_int, :proof_of_authorization, :company_information) |
#created_at ⇒ String
The ISO 8601 time at which the Document was created.
19 |
# File 'lib/increase/models/document.rb', line 19 required :created_at, String |
#entity_id ⇒ String
The identifier of the Entity the document was generated for.
24 |
# File 'lib/increase/models/document.rb', line 24 required :entity_id, String |
#file_id ⇒ String
The identifier of the File containing the Document's contents.
29 |
# File 'lib/increase/models/document.rb', line 29 required :file_id, String |
#id ⇒ String
The Document identifier.
9 |
# File 'lib/increase/models/document.rb', line 9 required :id, String |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be document
.
34 |
# File 'lib/increase/models/document.rb', line 34 required :type, Increase::Enum.new(:document) |