Class: UltracartClient::WorkflowTasksRequest
- Inherits:
-
Object
- Object
- UltracartClient::WorkflowTasksRequest
- Defined in:
- lib/ultracart_api/models/workflow_tasks_request.rb
Defined Under Namespace
Classes: EnumAttributeValidator
Instance Attribute Summary collapse
-
#assigned_to_group_id ⇒ Object
Assigned to group ID.
-
#assigned_to_me ⇒ Object
Tasks are assigned to me either by direct user id or a group that the user is a member of.
-
#assigned_to_user_id ⇒ Object
Assigned to user ID.
-
#created_by ⇒ Object
Returns the value of attribute created_by.
-
#created_dts_begin ⇒ Object
Date/time that the workflow task was created.
-
#created_dts_end ⇒ Object
Date/time that the workflow task was created.
-
#delay_until_dts_begin ⇒ Object
Date/time that the workflow task should delay until.
-
#delay_until_dts_end ⇒ Object
Date/time that the workflow task should delay until.
-
#due_dts_begin ⇒ Object
Date/time that the workflow task is due.
-
#due_dts_end ⇒ Object
Date/time that the workflow task is due.
-
#last_update_dts_begin ⇒ Object
Date/time that the workflow task was last updated.
-
#last_update_dts_end ⇒ Object
Date/time that the workflow task was last updated.
-
#object_email ⇒ Object
Object is associated with customer email.
-
#object_type ⇒ Object
Object Type.
-
#priority ⇒ Object
Priority.
-
#status ⇒ Object
Status of the workflow task.
-
#unassigned ⇒ Object
Tasks that are unassigned to a user or group.
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 = {}) ⇒ WorkflowTasksRequest
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 = {}) ⇒ WorkflowTasksRequest
Initializes the object
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 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 137 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?(:'assigned_to_group_id') self.assigned_to_group_id = attributes[:'assigned_to_group_id'] end if attributes.has_key?(:'assigned_to_me') self.assigned_to_me = attributes[:'assigned_to_me'] end if attributes.has_key?(:'assigned_to_user_id') self.assigned_to_user_id = attributes[:'assigned_to_user_id'] end if attributes.has_key?(:'created_by') self.created_by = attributes[:'created_by'] end if attributes.has_key?(:'created_dts_begin') self.created_dts_begin = attributes[:'created_dts_begin'] end if attributes.has_key?(:'created_dts_end') self.created_dts_end = attributes[:'created_dts_end'] end if attributes.has_key?(:'delay_until_dts_begin') self.delay_until_dts_begin = attributes[:'delay_until_dts_begin'] end if attributes.has_key?(:'delay_until_dts_end') self.delay_until_dts_end = attributes[:'delay_until_dts_end'] end if attributes.has_key?(:'due_dts_begin') self.due_dts_begin = attributes[:'due_dts_begin'] end if attributes.has_key?(:'due_dts_end') self.due_dts_end = attributes[:'due_dts_end'] end if attributes.has_key?(:'last_update_dts_begin') self.last_update_dts_begin = attributes[:'last_update_dts_begin'] end if attributes.has_key?(:'last_update_dts_end') self.last_update_dts_end = attributes[:'last_update_dts_end'] end if attributes.has_key?(:'object_email') self.object_email = attributes[:'object_email'] end if attributes.has_key?(:'object_type') self.object_type = attributes[:'object_type'] end if attributes.has_key?(:'priority') self.priority = attributes[:'priority'] end if attributes.has_key?(:'status') self.status = attributes[:'status'] end if attributes.has_key?(:'unassigned') self.unassigned = attributes[:'unassigned'] end end |
Instance Attribute Details
#assigned_to_group_id ⇒ Object
Assigned to group ID
18 19 20 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 18 def assigned_to_group_id @assigned_to_group_id end |
#assigned_to_me ⇒ Object
Tasks are assigned to me either by direct user id or a group that the user is a member of
21 22 23 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 21 def assigned_to_me @assigned_to_me end |
#assigned_to_user_id ⇒ Object
Assigned to user ID
24 25 26 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 24 def assigned_to_user_id @assigned_to_user_id end |
#created_by ⇒ Object
Returns the value of attribute created_by.
26 27 28 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 26 def created_by @created_by end |
#created_dts_begin ⇒ Object
Date/time that the workflow task was created
29 30 31 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 29 def created_dts_begin @created_dts_begin end |
#created_dts_end ⇒ Object
Date/time that the workflow task was created
32 33 34 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 32 def created_dts_end @created_dts_end end |
#delay_until_dts_begin ⇒ Object
Date/time that the workflow task should delay until
35 36 37 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 35 def delay_until_dts_begin @delay_until_dts_begin end |
#delay_until_dts_end ⇒ Object
Date/time that the workflow task should delay until
38 39 40 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 38 def delay_until_dts_end @delay_until_dts_end end |
#due_dts_begin ⇒ Object
Date/time that the workflow task is due
41 42 43 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 41 def due_dts_begin @due_dts_begin end |
#due_dts_end ⇒ Object
Date/time that the workflow task is due
44 45 46 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 44 def due_dts_end @due_dts_end end |
#last_update_dts_begin ⇒ Object
Date/time that the workflow task was last updated
47 48 49 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 47 def last_update_dts_begin @last_update_dts_begin end |
#last_update_dts_end ⇒ Object
Date/time that the workflow task was last updated
50 51 52 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 50 def last_update_dts_end @last_update_dts_end end |
#object_email ⇒ Object
Object is associated with customer email
53 54 55 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 53 def object_email @object_email end |
#object_type ⇒ Object
Object Type
56 57 58 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 56 def object_type @object_type end |
#priority ⇒ Object
Priority
59 60 61 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 59 def priority @priority end |
#status ⇒ Object
Status of the workflow task
62 63 64 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 62 def status @status end |
#unassigned ⇒ Object
Tasks that are unassigned to a user or group
65 66 67 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 65 def unassigned @unassigned end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 90 def self.attribute_map { :'assigned_to_group_id' => :'assigned_to_group_id', :'assigned_to_me' => :'assigned_to_me', :'assigned_to_user_id' => :'assigned_to_user_id', :'created_by' => :'created_by', :'created_dts_begin' => :'created_dts_begin', :'created_dts_end' => :'created_dts_end', :'delay_until_dts_begin' => :'delay_until_dts_begin', :'delay_until_dts_end' => :'delay_until_dts_end', :'due_dts_begin' => :'due_dts_begin', :'due_dts_end' => :'due_dts_end', :'last_update_dts_begin' => :'last_update_dts_begin', :'last_update_dts_end' => :'last_update_dts_end', :'object_email' => :'object_email', :'object_type' => :'object_type', :'priority' => :'priority', :'status' => :'status', :'unassigned' => :'unassigned' } end |
.swagger_types ⇒ Object
Attribute type mapping.
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 113 def self.swagger_types { :'assigned_to_group_id' => :'Integer', :'assigned_to_me' => :'BOOLEAN', :'assigned_to_user_id' => :'Integer', :'created_by' => :'WorkflowUser', :'created_dts_begin' => :'String', :'created_dts_end' => :'String', :'delay_until_dts_begin' => :'String', :'delay_until_dts_end' => :'String', :'due_dts_begin' => :'String', :'due_dts_end' => :'String', :'last_update_dts_begin' => :'String', :'last_update_dts_end' => :'String', :'object_email' => :'String', :'object_type' => :'String', :'priority' => :'String', :'status' => :'String', :'unassigned' => :'BOOLEAN' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 263 def ==(o) return true if self.equal?(o) self.class == o.class && assigned_to_group_id == o.assigned_to_group_id && assigned_to_me == o.assigned_to_me && assigned_to_user_id == o.assigned_to_user_id && created_by == o.created_by && created_dts_begin == o.created_dts_begin && created_dts_end == o.created_dts_end && delay_until_dts_begin == o.delay_until_dts_begin && delay_until_dts_end == o.delay_until_dts_end && due_dts_begin == o.due_dts_begin && due_dts_end == o.due_dts_end && last_update_dts_begin == o.last_update_dts_begin && last_update_dts_end == o.last_update_dts_end && object_email == o.object_email && object_type == o.object_type && priority == o.priority && status == o.status && unassigned == o.unassigned end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 321 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 = UltracartClient.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
387 388 389 390 391 392 393 394 395 396 397 398 399 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 387 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
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 300 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 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
287 288 289 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 287 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
293 294 295 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 293 def hash [assigned_to_group_id, assigned_to_me, assigned_to_user_id, created_by, created_dts_begin, created_dts_end, delay_until_dts_begin, delay_until_dts_end, due_dts_begin, due_dts_end, last_update_dts_begin, last_update_dts_end, object_email, object_type, priority, status, unassigned].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
214 215 216 217 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 214 def list_invalid_properties invalid_properties = Array.new invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
367 368 369 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 367 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
373 374 375 376 377 378 379 380 381 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 373 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
361 362 363 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 361 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
221 222 223 224 225 226 227 228 229 |
# File 'lib/ultracart_api/models/workflow_tasks_request.rb', line 221 def valid? object_type_validator = EnumAttributeValidator.new('String', ['order', 'auto order', 'item', 'customer profile']) return false unless object_type_validator.valid?(@object_type) priority_validator = EnumAttributeValidator.new('String', ['1 - low', '2 - medium', '3 - high', '4 - critical']) return false unless priority_validator.valid?(@priority) status_validator = EnumAttributeValidator.new('String', ['open', 'closed', 'delayed', 'awaiting customer feedback']) return false unless status_validator.valid?(@status) true end |