Class: Asdawqw::PropertyListRequest
- Defined in:
- lib/asdawqw/models/property_list_request.rb
Overview
Request Model for list of properties
Instance Attribute Summary collapse
-
#data ⇒ List of Integer
List of property IDs (ID from BookingPal system).
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) ⇒ PropertyListRequest
constructor
A new instance of PropertyListRequest.
Methods inherited from BaseModel
Constructor Details
#initialize(data = nil) ⇒ PropertyListRequest
Returns a new instance of PropertyListRequest.
21 22 23 |
# File 'lib/asdawqw/models/property_list_request.rb', line 21 def initialize(data = nil) @data = data end |
Instance Attribute Details
#data ⇒ List of Integer
List of property IDs (ID from BookingPal system). At least one ID need to be present.
12 13 14 |
# File 'lib/asdawqw/models/property_list_request.rb', line 12 def data @data end |
Class Method Details
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
26 27 28 29 30 31 32 33 34 |
# File 'lib/asdawqw/models/property_list_request.rb', line 26 def self.from_hash(hash) return nil unless hash # Extract variables from the hash. data = hash['data'] # Create object from extracted values. PropertyListRequest.new(data) end |
.names ⇒ Object
A mapping from model property names to API property names.
15 16 17 18 19 |
# File 'lib/asdawqw/models/property_list_request.rb', line 15 def self.names @_hash = {} if @_hash.nil? @_hash['data'] = 'data' @_hash end |