Class: AsposeHtml::FilesUploadResult
- Defined in:
- lib/aspose_html_cloud/models/files_upload_result.rb
Overview
File upload result
Instance Attribute Summary collapse
-
#errors ⇒ Object
List of errors.
-
#uploaded ⇒ Object
List of uploaded file names.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.model_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ FilesUploadResult
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Methods inherited from BaseModel
#_deserialize, #_to_hash, #build_from_hash, #eql?, #to_body, #to_hash, #to_s
Constructor Details
#initialize(attributes = {}) ⇒ FilesUploadResult
Initializes the object
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/aspose_html_cloud/models/files_upload_result.rb', line 58 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } if attributes.has_key?(:'uploaded') if (value = attributes[:'uploaded']).is_a?(Array) self.uploaded = value end end if attributes.has_key?(:'errors') if (value = attributes[:'errors']).is_a?(Array) self.errors = value end end end |
Instance Attribute Details
#errors ⇒ Object
List of errors.
38 39 40 |
# File 'lib/aspose_html_cloud/models/files_upload_result.rb', line 38 def errors @errors end |
#uploaded ⇒ Object
List of uploaded file names
35 36 37 |
# File 'lib/aspose_html_cloud/models/files_upload_result.rb', line 35 def uploaded @uploaded end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
41 42 43 44 45 46 |
# File 'lib/aspose_html_cloud/models/files_upload_result.rb', line 41 def self.attribute_map { :'uploaded' => :'uploaded', :'errors' => :'errors' } end |
.model_types ⇒ Object
Attribute type mapping.
49 50 51 52 53 54 |
# File 'lib/aspose_html_cloud/models/files_upload_result.rb', line 49 def self.model_types { :'uploaded' => :'Array<String>', :'errors' => :'Array<Error>' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
92 93 94 95 96 97 |
# File 'lib/aspose_html_cloud/models/files_upload_result.rb', line 92 def ==(o) return true if self.equal?(o) self.class == o.class && uploaded == o.uploaded && errors == o.errors end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
101 102 103 |
# File 'lib/aspose_html_cloud/models/files_upload_result.rb', line 101 def hash [uploaded, errors].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
79 80 81 82 |
# File 'lib/aspose_html_cloud/models/files_upload_result.rb', line 79 def list_invalid_properties invalid_properties = Array.new invalid_properties end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
86 87 88 |
# File 'lib/aspose_html_cloud/models/files_upload_result.rb', line 86 def valid? true end |