Class: DocuSign_Rooms::Room
- Inherits:
-
Object
- Object
- DocuSign_Rooms::Room
- Defined in:
- lib/docusign_rooms/models/room.rb
Instance Attribute Summary collapse
-
#closed_date ⇒ Object
Returns the value of attribute closed_date.
-
#closed_status_id ⇒ Object
Returns the value of attribute closed_status_id.
-
#company_id ⇒ Object
Returns the value of attribute company_id.
-
#created_by_user_id ⇒ Object
Returns the value of attribute created_by_user_id.
-
#created_date ⇒ Object
Returns the value of attribute created_date.
-
#field_data ⇒ Object
Returns the value of attribute field_data.
-
#field_data_last_updated_date ⇒ Object
Returns the value of attribute field_data_last_updated_date.
-
#name ⇒ Object
Returns the value of attribute name.
-
#office_id ⇒ Object
Returns the value of attribute office_id.
-
#rejected_by_user_id ⇒ Object
Returns the value of attribute rejected_by_user_id.
-
#rejected_date ⇒ Object
Returns the value of attribute rejected_date.
-
#room_id ⇒ Object
Returns the value of attribute room_id.
-
#room_owner_ids ⇒ Object
Returns the value of attribute room_owner_ids.
-
#submitted_for_review_date ⇒ Object
Returns the value of attribute submitted_for_review_date.
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 = {}) ⇒ Room
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 = {}) ⇒ Room
Initializes the object
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 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 |
# File 'lib/docusign_rooms/models/room.rb', line 86 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?(:'roomId') self.room_id = attributes[:'roomId'] end if attributes.has_key?(:'companyId') self.company_id = attributes[:'companyId'] end if attributes.has_key?(:'name') self.name = attributes[:'name'] end if attributes.has_key?(:'officeId') self.office_id = attributes[:'officeId'] end if attributes.has_key?(:'createdDate') self.created_date = attributes[:'createdDate'] end if attributes.has_key?(:'submittedForReviewDate') self.submitted_for_review_date = attributes[:'submittedForReviewDate'] end if attributes.has_key?(:'closedDate') self.closed_date = attributes[:'closedDate'] end if attributes.has_key?(:'rejectedDate') self.rejected_date = attributes[:'rejectedDate'] end if attributes.has_key?(:'createdByUserId') self.created_by_user_id = attributes[:'createdByUserId'] end if attributes.has_key?(:'roomOwnerIds') if (value = attributes[:'roomOwnerIds']).is_a?(Array) self.room_owner_ids = value end end if attributes.has_key?(:'rejectedByUserId') self.rejected_by_user_id = attributes[:'rejectedByUserId'] end if attributes.has_key?(:'closedStatusId') self.closed_status_id = attributes[:'closedStatusId'] end if attributes.has_key?(:'fieldDataLastUpdatedDate') self.field_data_last_updated_date = attributes[:'fieldDataLastUpdatedDate'] end if attributes.has_key?(:'fieldData') self.field_data = attributes[:'fieldData'] end end |
Instance Attribute Details
#closed_date ⇒ Object
Returns the value of attribute closed_date.
28 29 30 |
# File 'lib/docusign_rooms/models/room.rb', line 28 def closed_date @closed_date end |
#closed_status_id ⇒ Object
Returns the value of attribute closed_status_id.
38 39 40 |
# File 'lib/docusign_rooms/models/room.rb', line 38 def closed_status_id @closed_status_id end |
#company_id ⇒ Object
Returns the value of attribute company_id.
18 19 20 |
# File 'lib/docusign_rooms/models/room.rb', line 18 def company_id @company_id end |
#created_by_user_id ⇒ Object
Returns the value of attribute created_by_user_id.
32 33 34 |
# File 'lib/docusign_rooms/models/room.rb', line 32 def created_by_user_id @created_by_user_id end |
#created_date ⇒ Object
Returns the value of attribute created_date.
24 25 26 |
# File 'lib/docusign_rooms/models/room.rb', line 24 def created_date @created_date end |
#field_data ⇒ Object
Returns the value of attribute field_data.
42 43 44 |
# File 'lib/docusign_rooms/models/room.rb', line 42 def field_data @field_data end |
#field_data_last_updated_date ⇒ Object
Returns the value of attribute field_data_last_updated_date.
40 41 42 |
# File 'lib/docusign_rooms/models/room.rb', line 40 def field_data_last_updated_date @field_data_last_updated_date end |
#name ⇒ Object
Returns the value of attribute name.
20 21 22 |
# File 'lib/docusign_rooms/models/room.rb', line 20 def name @name end |
#office_id ⇒ Object
Returns the value of attribute office_id.
22 23 24 |
# File 'lib/docusign_rooms/models/room.rb', line 22 def office_id @office_id end |
#rejected_by_user_id ⇒ Object
Returns the value of attribute rejected_by_user_id.
36 37 38 |
# File 'lib/docusign_rooms/models/room.rb', line 36 def rejected_by_user_id @rejected_by_user_id end |
#rejected_date ⇒ Object
Returns the value of attribute rejected_date.
30 31 32 |
# File 'lib/docusign_rooms/models/room.rb', line 30 def rejected_date @rejected_date end |
#room_id ⇒ Object
Returns the value of attribute room_id.
16 17 18 |
# File 'lib/docusign_rooms/models/room.rb', line 16 def room_id @room_id end |
#room_owner_ids ⇒ Object
Returns the value of attribute room_owner_ids.
34 35 36 |
# File 'lib/docusign_rooms/models/room.rb', line 34 def room_owner_ids @room_owner_ids end |
#submitted_for_review_date ⇒ Object
Returns the value of attribute submitted_for_review_date.
26 27 28 |
# File 'lib/docusign_rooms/models/room.rb', line 26 def submitted_for_review_date @submitted_for_review_date end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/docusign_rooms/models/room.rb', line 45 def self.attribute_map { :'room_id' => :'roomId', :'company_id' => :'companyId', :'name' => :'name', :'office_id' => :'officeId', :'created_date' => :'createdDate', :'submitted_for_review_date' => :'submittedForReviewDate', :'closed_date' => :'closedDate', :'rejected_date' => :'rejectedDate', :'created_by_user_id' => :'createdByUserId', :'room_owner_ids' => :'roomOwnerIds', :'rejected_by_user_id' => :'rejectedByUserId', :'closed_status_id' => :'closedStatusId', :'field_data_last_updated_date' => :'fieldDataLastUpdatedDate', :'field_data' => :'fieldData' } end |
.swagger_types ⇒ Object
Attribute type mapping.
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
# File 'lib/docusign_rooms/models/room.rb', line 65 def self.swagger_types { :'room_id' => :'Integer', :'company_id' => :'Integer', :'name' => :'String', :'office_id' => :'Integer', :'created_date' => :'DateTime', :'submitted_for_review_date' => :'DateTime', :'closed_date' => :'DateTime', :'rejected_date' => :'DateTime', :'created_by_user_id' => :'Integer', :'room_owner_ids' => :'Array<Integer>', :'rejected_by_user_id' => :'Integer', :'closed_status_id' => :'String', :'field_data_last_updated_date' => :'DateTime', :'field_data' => :'FieldData' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 |
# File 'lib/docusign_rooms/models/room.rb', line 166 def ==(o) return true if self.equal?(o) self.class == o.class && room_id == o.room_id && company_id == o.company_id && name == o.name && office_id == o.office_id && created_date == o.created_date && submitted_for_review_date == o.submitted_for_review_date && closed_date == o.closed_date && rejected_date == o.rejected_date && created_by_user_id == o.created_by_user_id && room_owner_ids == o.room_owner_ids && rejected_by_user_id == o.rejected_by_user_id && closed_status_id == o.closed_status_id && field_data_last_updated_date == o.field_data_last_updated_date && field_data == o.field_data end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 |
# File 'lib/docusign_rooms/models/room.rb', line 221 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 = DocuSign_Rooms.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
287 288 289 290 291 292 293 294 295 296 297 298 299 |
# File 'lib/docusign_rooms/models/room.rb', line 287 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
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 |
# File 'lib/docusign_rooms/models/room.rb', line 200 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
187 188 189 |
# File 'lib/docusign_rooms/models/room.rb', line 187 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
193 194 195 |
# File 'lib/docusign_rooms/models/room.rb', line 193 def hash [room_id, company_id, name, office_id, created_date, submitted_for_review_date, closed_date, rejected_date, created_by_user_id, room_owner_ids, rejected_by_user_id, closed_status_id, field_data_last_updated_date, field_data].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
153 154 155 156 |
# File 'lib/docusign_rooms/models/room.rb', line 153 def list_invalid_properties invalid_properties = Array.new invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
267 268 269 |
# File 'lib/docusign_rooms/models/room.rb', line 267 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
273 274 275 276 277 278 279 280 281 |
# File 'lib/docusign_rooms/models/room.rb', line 273 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
261 262 263 |
# File 'lib/docusign_rooms/models/room.rb', line 261 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
160 161 162 |
# File 'lib/docusign_rooms/models/room.rb', line 160 def valid? true end |