Class: Buildium::LeasePostMessage
- Inherits:
-
Object
- Object
- Buildium::LeasePostMessage
- Defined in:
- lib/buildium-ruby/models/lease_post_message.rb
Defined Under Namespace
Classes: EnumAttributeValidator
Instance Attribute Summary collapse
-
#cosigners ⇒ Object
List of the cosigners on the lease.
-
#lease_from_date ⇒ Object
Start date of the lease.
-
#lease_to_date ⇒ Object
End date of the lease.
-
#lease_type ⇒ Object
Describes the type of lease.<br /><br /> ‘AtWill` leases are month-to-month leases.
-
#prorated_first_month_rent ⇒ Object
Prorated rent charged for the first month of the lease.
-
#prorated_last_month_rent ⇒ Object
Prorated rent charged for the last month of the lease.
-
#rent ⇒ Object
Returns the value of attribute rent.
-
#security_deposit ⇒ Object
Returns the value of attribute security_deposit.
-
#send_welcome_email ⇒ Object
Indicates whether to send a welcome email to all tenants on the lease inviting them to the resident center website.
-
#tenants ⇒ Object
List of the tenants on the lease.
-
#unit_id ⇒ Object
Unit unique identifier associated with the lease.
Class Method Summary collapse
-
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about.
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.build_from_hash(attributes) ⇒ Object
Builds the object from hash.
-
.openapi_nullable ⇒ Object
List of attributes with nullable: true.
-
.openapi_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 ⇒ Integer
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ LeasePostMessage
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 = {}) ⇒ LeasePostMessage
Initializes the object
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 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 118 def initialize(attributes = {}) if (!attributes.is_a?(Hash)) fail ArgumentError, "The input argument (attributes) must be a hash in `Buildium::LeasePostMessage` initialize method" end # check to see if the attribute exists and convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| if (!self.class.attribute_map.key?(k.to_sym)) fail ArgumentError, "`#{k}` is not a valid attribute in `Buildium::LeasePostMessage`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect end h[k.to_sym] = v } if attributes.key?(:'lease_type') self.lease_type = attributes[:'lease_type'] end if attributes.key?(:'unit_id') self.unit_id = attributes[:'unit_id'] end if attributes.key?(:'lease_from_date') self.lease_from_date = attributes[:'lease_from_date'] end if attributes.key?(:'lease_to_date') self.lease_to_date = attributes[:'lease_to_date'] end if attributes.key?(:'send_welcome_email') self.send_welcome_email = attributes[:'send_welcome_email'] end if attributes.key?(:'tenants') if (value = attributes[:'tenants']).is_a?(Array) self.tenants = value end end if attributes.key?(:'cosigners') if (value = attributes[:'cosigners']).is_a?(Array) self.cosigners = value end end if attributes.key?(:'rent') self.rent = attributes[:'rent'] end if attributes.key?(:'security_deposit') self.security_deposit = attributes[:'security_deposit'] end if attributes.key?(:'prorated_first_month_rent') self.prorated_first_month_rent = attributes[:'prorated_first_month_rent'] end if attributes.key?(:'prorated_last_month_rent') self.prorated_last_month_rent = attributes[:'prorated_last_month_rent'] end end |
Instance Attribute Details
#cosigners ⇒ Object
List of the cosigners on the lease.
37 38 39 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 37 def cosigners @cosigners end |
#lease_from_date ⇒ Object
Start date of the lease.
25 26 27 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 25 def lease_from_date @lease_from_date end |
#lease_to_date ⇒ Object
End date of the lease.
28 29 30 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 28 def lease_to_date @lease_to_date end |
#lease_type ⇒ Object
Describes the type of lease.<br /><br /> ‘AtWill` leases are month-to-month leases. Setting a lease as at will tells Buildium when the tenant’s lease initially started, but since there is no lease end date, Buildium will never move the lease to expired, and it will continue to post any automatic transactions (like recurring monthly rent charges or late fees) until you manually end the lease. <br /><br /> ‘Fixed` leases are leases that have specific start and end dates.When the end date occurs, the lease will move from active to expired, and any transactions set to post automatically(like recurring monthly rent charges or late fees) will stop posting. <br /><br /> `FixedWithRollover` leases are similar to fixed leases, but instead of Buildium moving this lease to expired as of the end date, it will move the lease to an at will status, which tells Buildium to continue posting monthly rent charges, late fees for you until you manually end the lease.
19 20 21 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 19 def lease_type @lease_type end |
#prorated_first_month_rent ⇒ Object
Prorated rent charged for the first month of the lease. Must be null if the lease begins on the first day of a month.
44 45 46 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 44 def prorated_first_month_rent @prorated_first_month_rent end |
#prorated_last_month_rent ⇒ Object
Prorated rent charged for the last month of the lease. Must be null if the lease ends on the last day of a month.
47 48 49 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 47 def prorated_last_month_rent @prorated_last_month_rent end |
#rent ⇒ Object
Returns the value of attribute rent.
39 40 41 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 39 def rent @rent end |
#security_deposit ⇒ Object
Returns the value of attribute security_deposit.
41 42 43 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 41 def security_deposit @security_deposit end |
#send_welcome_email ⇒ Object
Indicates whether to send a welcome email to all tenants on the lease inviting them to the resident center website.
31 32 33 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 31 def send_welcome_email @send_welcome_email end |
#tenants ⇒ Object
List of the tenants on the lease.
34 35 36 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 34 def tenants @tenants end |
#unit_id ⇒ Object
Unit unique identifier associated with the lease.
22 23 24 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 22 def unit_id @unit_id end |
Class Method Details
.acceptable_attributes ⇒ Object
Returns all the JSON keys this model knows about
89 90 91 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 89 def self.acceptable_attributes attribute_map.values end |
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 72 def self.attribute_map { :'lease_type' => :'LeaseType', :'unit_id' => :'UnitId', :'lease_from_date' => :'LeaseFromDate', :'lease_to_date' => :'LeaseToDate', :'send_welcome_email' => :'SendWelcomeEmail', :'tenants' => :'Tenants', :'cosigners' => :'Cosigners', :'rent' => :'Rent', :'security_deposit' => :'SecurityDeposit', :'prorated_first_month_rent' => :'ProratedFirstMonthRent', :'prorated_last_month_rent' => :'ProratedLastMonthRent' } end |
.build_from_hash(attributes) ⇒ Object
Builds the object from hash
263 264 265 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 263 def self.build_from_hash(attributes) new.build_from_hash(attributes) end |
.openapi_nullable ⇒ Object
List of attributes with nullable: true
111 112 113 114 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 111 def self.openapi_nullable Set.new([ ]) end |
.openapi_types ⇒ Object
Attribute type mapping.
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 94 def self.openapi_types { :'lease_type' => :'String', :'unit_id' => :'Integer', :'lease_from_date' => :'Date', :'lease_to_date' => :'Date', :'send_welcome_email' => :'Boolean', :'tenants' => :'Array<RentalTenantPutMessage>', :'cosigners' => :'Array<LeaseCosignerPostMessage>', :'rent' => :'LeaseRentPostMessage', :'security_deposit' => :'LeaseSecurityDepositPostMessage', :'prorated_first_month_rent' => :'Float', :'prorated_last_month_rent' => :'Float' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 232 def ==(o) return true if self.equal?(o) self.class == o.class && lease_type == o.lease_type && unit_id == o.unit_id && lease_from_date == o.lease_from_date && lease_to_date == o.lease_to_date && send_welcome_email == o.send_welcome_email && tenants == o.tenants && cosigners == o.cosigners && rent == o.rent && security_deposit == o.security_deposit && prorated_first_month_rent == o.prorated_first_month_rent && prorated_last_month_rent == o.prorated_last_month_rent end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 294 def _deserialize(type, value) case type.to_sym when :Time Time.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 # models (e.g. Pet) or oneOf klass = Buildium.const_get(type) klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.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
365 366 367 368 369 370 371 372 373 374 375 376 377 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 365 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
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 270 def build_from_hash(attributes) return unless attributes.is_a?(Hash) attributes = attributes.transform_keys(&:to_sym) self.class.openapi_types.each_pair do |key, type| if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key) self.send("#{key}=", nil) elsif 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 end self end |
#eql?(o) ⇒ Boolean
250 251 252 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 250 def eql?(o) self == o end |
#hash ⇒ Integer
Calculates hash code according to all attributes.
256 257 258 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 256 def hash [lease_type, unit_id, lease_from_date, lease_to_date, send_welcome_email, tenants, cosigners, rent, security_deposit, prorated_first_month_rent, prorated_last_month_rent].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 182 def list_invalid_properties invalid_properties = Array.new if @lease_type.nil? invalid_properties.push('invalid value for "lease_type", lease_type cannot be nil.') end if @unit_id.nil? invalid_properties.push('invalid value for "unit_id", unit_id cannot be nil.') end if @lease_from_date.nil? invalid_properties.push('invalid value for "lease_from_date", lease_from_date cannot be nil.') end if @send_welcome_email.nil? invalid_properties.push('invalid value for "send_welcome_email", send_welcome_email cannot be nil.') end if @tenants.nil? invalid_properties.push('invalid value for "tenants", tenants cannot be nil.') end invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
341 342 343 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 341 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 347 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) if value.nil? is_nullable = self.class.openapi_nullable.include?(attr) next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}")) end hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
335 336 337 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 335 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
209 210 211 212 213 214 215 216 217 218 |
# File 'lib/buildium-ruby/models/lease_post_message.rb', line 209 def valid? return false if @lease_type.nil? lease_type_validator = EnumAttributeValidator.new('String', ["Fixed", "FixedWithRollover", "AtWill"]) return false unless lease_type_validator.valid?(@lease_type) return false if @unit_id.nil? return false if @lease_from_date.nil? return false if @send_welcome_email.nil? return false if @tenants.nil? true end |