Class: Asdawqw::CreateNewUpdatePropertyManagerRequest
- Defined in:
- lib/asdawqw/models/create_new_update_property_manager_request.rb
Overview
CreateNewUpdatePropertyManagerRequest Model.
Instance Attribute Summary collapse
-
#data ⇒ Company
model.
Class Method Summary collapse
-
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
-
.names ⇒ Object
A mapping from model property names to API property names.
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ CreateNewUpdatePropertyManagerRequest
constructor
A new instance of CreateNewUpdatePropertyManagerRequest.
Methods inherited from BaseModel
Constructor Details
#initialize(data = nil) ⇒ CreateNewUpdatePropertyManagerRequest
Returns a new instance of CreateNewUpdatePropertyManagerRequest.
20 21 22 |
# File 'lib/asdawqw/models/create_new_update_property_manager_request.rb', line 20 def initialize(data = nil) @data = data end |
Instance Attribute Details
#data ⇒ Company
model
11 12 13 |
# File 'lib/asdawqw/models/create_new_update_property_manager_request.rb', line 11 def data @data end |
Class Method Details
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
25 26 27 28 29 30 31 32 33 |
# File 'lib/asdawqw/models/create_new_update_property_manager_request.rb', line 25 def self.from_hash(hash) return nil unless hash # Extract variables from the hash. data = Company.from_hash(hash['data']) if hash['data'] # Create object from extracted values. CreateNewUpdatePropertyManagerRequest.new(data) end |
.names ⇒ Object
A mapping from model property names to API property names.
14 15 16 17 18 |
# File 'lib/asdawqw/models/create_new_update_property_manager_request.rb', line 14 def self.names @_hash = {} if @_hash.nil? @_hash['data'] = 'data' @_hash end |