Class: AsposeCellsCloud::ProtectSheetParameter
- Inherits:
-
Object
- Object
- AsposeCellsCloud::ProtectSheetParameter
- Defined in:
- lib/aspose_cells_cloud/models/protect_sheet_parameter.rb
Instance Attribute Summary collapse
-
#allow_deleting_column ⇒ Object
Returns the value of attribute allow_deleting_column.
-
#allow_deleting_row ⇒ Object
Returns the value of attribute allow_deleting_row.
-
#allow_edit_area ⇒ Object
Returns the value of attribute allow_edit_area.
-
#allow_filtering ⇒ Object
Returns the value of attribute allow_filtering.
-
#allow_formatting_cell ⇒ Object
Returns the value of attribute allow_formatting_cell.
-
#allow_formatting_column ⇒ Object
Returns the value of attribute allow_formatting_column.
-
#allow_formatting_row ⇒ Object
Returns the value of attribute allow_formatting_row.
-
#allow_inserting_column ⇒ Object
Returns the value of attribute allow_inserting_column.
-
#allow_inserting_hyperlink ⇒ Object
Returns the value of attribute allow_inserting_hyperlink.
-
#allow_inserting_row ⇒ Object
Returns the value of attribute allow_inserting_row.
-
#allow_selecting_locked_cell ⇒ Object
Returns the value of attribute allow_selecting_locked_cell.
-
#allow_selecting_unlocked_cell ⇒ Object
Returns the value of attribute allow_selecting_unlocked_cell.
-
#allow_sorting ⇒ Object
Returns the value of attribute allow_sorting.
-
#allow_using_pivot_table ⇒ Object
Returns the value of attribute allow_using_pivot_table.
-
#password ⇒ Object
Returns the value of attribute password.
-
#protection_type ⇒ Object
Returns the value of attribute protection_type.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
-
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ ProtectSheetParameter
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility).
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Constructor Details
#initialize(attributes = {}) ⇒ ProtectSheetParameter
Initializes the object
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 107 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?(:'AllowSelectingUnlockedCell') self.allow_selecting_unlocked_cell = attributes[:'AllowSelectingUnlockedCell'] end if attributes.has_key?(:'AllowFiltering') self.allow_filtering = attributes[:'AllowFiltering'] end if attributes.has_key?(:'AllowDeletingColumn') self.allow_deleting_column = attributes[:'AllowDeletingColumn'] end if attributes.has_key?(:'AllowSelectingLockedCell') self.allow_selecting_locked_cell = attributes[:'AllowSelectingLockedCell'] end if attributes.has_key?(:'AllowUsingPivotTable') self.allow_using_pivot_table = attributes[:'AllowUsingPivotTable'] end if attributes.has_key?(:'AllowEditArea') if (value = attributes[:'AllowEditArea']).is_a?(Array) self.allow_edit_area = value end end if attributes.has_key?(:'AllowInsertingHyperlink') self.allow_inserting_hyperlink = attributes[:'AllowInsertingHyperlink'] end if attributes.has_key?(:'AllowFormattingCell') self.allow_formatting_cell = attributes[:'AllowFormattingCell'] end if attributes.has_key?(:'AllowFormattingRow') self.allow_formatting_row = attributes[:'AllowFormattingRow'] end if attributes.has_key?(:'AllowInsertingRow') self.allow_inserting_row = attributes[:'AllowInsertingRow'] end if attributes.has_key?(:'AllowFormattingColumn') self.allow_formatting_column = attributes[:'AllowFormattingColumn'] end if attributes.has_key?(:'AllowSorting') self.allow_sorting = attributes[:'AllowSorting'] end if attributes.has_key?(:'AllowInsertingColumn') self.allow_inserting_column = attributes[:'AllowInsertingColumn'] end if attributes.has_key?(:'Password') self.password = attributes[:'Password'] end if attributes.has_key?(:'AllowDeletingRow') self.allow_deleting_row = attributes[:'AllowDeletingRow'] end if attributes.has_key?(:'ProtectionType') self.protection_type = attributes[:'ProtectionType'] end end |
Instance Attribute Details
#allow_deleting_column ⇒ Object
Returns the value of attribute allow_deleting_column.
32 33 34 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 32 def allow_deleting_column @allow_deleting_column end |
#allow_deleting_row ⇒ Object
Returns the value of attribute allow_deleting_row.
56 57 58 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 56 def allow_deleting_row @allow_deleting_row end |
#allow_edit_area ⇒ Object
Returns the value of attribute allow_edit_area.
38 39 40 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 38 def allow_edit_area @allow_edit_area end |
#allow_filtering ⇒ Object
Returns the value of attribute allow_filtering.
30 31 32 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 30 def allow_filtering @allow_filtering end |
#allow_formatting_cell ⇒ Object
Returns the value of attribute allow_formatting_cell.
42 43 44 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 42 def allow_formatting_cell @allow_formatting_cell end |
#allow_formatting_column ⇒ Object
Returns the value of attribute allow_formatting_column.
48 49 50 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 48 def allow_formatting_column @allow_formatting_column end |
#allow_formatting_row ⇒ Object
Returns the value of attribute allow_formatting_row.
44 45 46 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 44 def allow_formatting_row @allow_formatting_row end |
#allow_inserting_column ⇒ Object
Returns the value of attribute allow_inserting_column.
52 53 54 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 52 def allow_inserting_column @allow_inserting_column end |
#allow_inserting_hyperlink ⇒ Object
Returns the value of attribute allow_inserting_hyperlink.
40 41 42 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 40 def allow_inserting_hyperlink @allow_inserting_hyperlink end |
#allow_inserting_row ⇒ Object
Returns the value of attribute allow_inserting_row.
46 47 48 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 46 def allow_inserting_row @allow_inserting_row end |
#allow_selecting_locked_cell ⇒ Object
Returns the value of attribute allow_selecting_locked_cell.
34 35 36 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 34 def allow_selecting_locked_cell @allow_selecting_locked_cell end |
#allow_selecting_unlocked_cell ⇒ Object
Returns the value of attribute allow_selecting_unlocked_cell.
28 29 30 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 28 def allow_selecting_unlocked_cell @allow_selecting_unlocked_cell end |
#allow_sorting ⇒ Object
Returns the value of attribute allow_sorting.
50 51 52 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 50 def allow_sorting @allow_sorting end |
#allow_using_pivot_table ⇒ Object
Returns the value of attribute allow_using_pivot_table.
36 37 38 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 36 def allow_using_pivot_table @allow_using_pivot_table end |
#password ⇒ Object
Returns the value of attribute password.
54 55 56 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 54 def password @password end |
#protection_type ⇒ Object
Returns the value of attribute protection_type.
58 59 60 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 58 def protection_type @protection_type end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 62 def self.attribute_map { :'allow_selecting_unlocked_cell' => :'AllowSelectingUnlockedCell', :'allow_filtering' => :'AllowFiltering', :'allow_deleting_column' => :'AllowDeletingColumn', :'allow_selecting_locked_cell' => :'AllowSelectingLockedCell', :'allow_using_pivot_table' => :'AllowUsingPivotTable', :'allow_edit_area' => :'AllowEditArea', :'allow_inserting_hyperlink' => :'AllowInsertingHyperlink', :'allow_formatting_cell' => :'AllowFormattingCell', :'allow_formatting_row' => :'AllowFormattingRow', :'allow_inserting_row' => :'AllowInsertingRow', :'allow_formatting_column' => :'AllowFormattingColumn', :'allow_sorting' => :'AllowSorting', :'allow_inserting_column' => :'AllowInsertingColumn', :'password' => :'Password', :'allow_deleting_row' => :'AllowDeletingRow', :'protection_type' => :'ProtectionType' } end |
.swagger_types ⇒ Object
Attribute type mapping.
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 84 def self.swagger_types { :'allow_selecting_unlocked_cell' => :'String', :'allow_filtering' => :'String', :'allow_deleting_column' => :'String', :'allow_selecting_locked_cell' => :'String', :'allow_using_pivot_table' => :'String', :'allow_edit_area' => :'Array<String>', :'allow_inserting_hyperlink' => :'String', :'allow_formatting_cell' => :'String', :'allow_formatting_row' => :'String', :'allow_inserting_row' => :'String', :'allow_formatting_column' => :'String', :'allow_sorting' => :'String', :'allow_inserting_column' => :'String', :'password' => :'String', :'allow_deleting_row' => :'String', :'protection_type' => :'String' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 196 def ==(o) return true if self.equal?(o) self.class == o.class && allow_selecting_unlocked_cell == o.allow_selecting_unlocked_cell && allow_filtering == o.allow_filtering && allow_deleting_column == o.allow_deleting_column && allow_selecting_locked_cell == o.allow_selecting_locked_cell && allow_using_pivot_table == o.allow_using_pivot_table && allow_edit_area == o.allow_edit_area && allow_inserting_hyperlink == o.allow_inserting_hyperlink && allow_formatting_cell == o.allow_formatting_cell && allow_formatting_row == o.allow_formatting_row && allow_inserting_row == o.allow_inserting_row && allow_formatting_column == o.allow_formatting_column && allow_sorting == o.allow_sorting && allow_inserting_column == o.allow_inserting_column && password == o.password && allow_deleting_row == o.allow_deleting_row && protection_type == o.protection_type end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 253 def _deserialize(type, value) case type.to_sym when :DateTime DateTime.parse(value) when :Date Date.parse(value) when :String value.to_s when :Integer value.to_i when :Float value.to_f when :BOOLEAN if value.to_s =~ /\A(true|t|yes|y|1)\z/i true else false end when :Object # generic object (usually a Hash), return directly value when /\AArray<(?<inner_type>.+)>\z/ inner_type = Regexp.last_match[:inner_type] value.map { |v| _deserialize(inner_type, v) } when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/ k_type = Regexp.last_match[:k_type] v_type = Regexp.last_match[:v_type] {}.tap do |hash| value.each do |k, v| hash[_deserialize(k_type, k)] = _deserialize(v_type, v) end end else # model temp_model = AsposeCellsCloud.const_get(type).new temp_model.build_from_hash(value) end end |
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value
319 320 321 322 323 324 325 326 327 328 329 330 331 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 319 def _to_hash(value) if value.is_a?(Array) value.compact.map{ |v| _to_hash(v) } elsif value.is_a?(Hash) {}.tap do |hash| value.each { |k, v| hash[k] = _to_hash(v) } end elsif value.respond_to? :to_hash value.to_hash else value end end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 232 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } ) end elsif !attributes[self.class.attribute_map[key]].nil? self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]])) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(o) ⇒ Boolean
219 220 221 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 219 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
225 226 227 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 225 def hash [allow_selecting_unlocked_cell, allow_filtering, allow_deleting_column, allow_selecting_locked_cell, allow_using_pivot_table, allow_edit_area, allow_inserting_hyperlink, allow_formatting_cell, allow_formatting_row, allow_inserting_row, allow_formatting_column, allow_sorting, allow_inserting_column, password, allow_deleting_row, protection_type].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
183 184 185 186 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 183 def list_invalid_properties invalid_properties = Array.new return invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
299 300 301 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 299 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
305 306 307 308 309 310 311 312 313 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 305 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) next if value.nil? hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
293 294 295 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 293 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
190 191 192 |
# File 'lib/aspose_cells_cloud/models/protect_sheet_parameter.rb', line 190 def valid? return true end |