Class: Yapstone::BookingInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/yapstone-payments/models/booking_info.rb

Overview

Captures booking information for a booking payment

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ BookingInfo

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
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
# File 'lib/yapstone-payments/models/booking_info.rb', line 70

def initialize(attributes = {})
  if (!attributes.is_a?(Hash))
    fail ArgumentError, "The input argument (attributes) must be a hash in `Yapstone::BookingInfo` 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 `Yapstone::BookingInfo`. 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?(:'checkin_date')
    self.checkin_date = attributes[:'checkin_date']
  end

  if attributes.key?(:'checkout_date')
    self.checkout_date = attributes[:'checkout_date']
  end

  if attributes.key?(:'nightly_rate')
    self.nightly_rate = attributes[:'nightly_rate']
  end

  if attributes.key?(:'number_of_adults')
    self.number_of_adults = attributes[:'number_of_adults']
  end

  if attributes.key?(:'number_of_children')
    self.number_of_children = attributes[:'number_of_children']
  end

  if attributes.key?(:'number_of_nights')
    self.number_of_nights = attributes[:'number_of_nights']
  end

  if attributes.key?(:'reservation_number')
    self.reservation_number = attributes[:'reservation_number']
  end

  if attributes.key?(:'nightly_tax')
    self.nightly_tax = attributes[:'nightly_tax']
  end
end

Instance Attribute Details

#checkin_dateObject

ISO 8601 date of the guest’s check in.



19
20
21
# File 'lib/yapstone-payments/models/booking_info.rb', line 19

def checkin_date
  @checkin_date
end

#checkout_dateObject

ISO 8601 date of the guest’s check out.



22
23
24
# File 'lib/yapstone-payments/models/booking_info.rb', line 22

def checkout_date
  @checkout_date
end

#nightly_rateObject

Returns the value of attribute nightly_rate.



24
25
26
# File 'lib/yapstone-payments/models/booking_info.rb', line 24

def nightly_rate
  @nightly_rate
end

#nightly_taxObject

Returns the value of attribute nightly_tax.



38
39
40
# File 'lib/yapstone-payments/models/booking_info.rb', line 38

def nightly_tax
  @nightly_tax
end

#number_of_adultsObject

Number of adults who will be staying in this booking.



27
28
29
# File 'lib/yapstone-payments/models/booking_info.rb', line 27

def number_of_adults
  @number_of_adults
end

#number_of_childrenObject

Number of children who will be staying in this booking.



30
31
32
# File 'lib/yapstone-payments/models/booking_info.rb', line 30

def number_of_children
  @number_of_children
end

#number_of_nightsObject

Number of nights that the guests will be staying.



33
34
35
# File 'lib/yapstone-payments/models/booking_info.rb', line 33

def number_of_nights
  @number_of_nights
end

#reservation_numberObject

Your system’s reservation number for this booking.



36
37
38
# File 'lib/yapstone-payments/models/booking_info.rb', line 36

def reservation_number
  @reservation_number
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/yapstone-payments/models/booking_info.rb', line 41

def self.attribute_map
  {
    :'checkin_date' => :'checkinDate',
    :'checkout_date' => :'checkoutDate',
    :'nightly_rate' => :'nightlyRate',
    :'number_of_adults' => :'numberOfAdults',
    :'number_of_children' => :'numberOfChildren',
    :'number_of_nights' => :'numberOfNights',
    :'reservation_number' => :'reservationNumber',
    :'nightly_tax' => :'nightlyTax'
  }
end

.build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



159
160
161
# File 'lib/yapstone-payments/models/booking_info.rb', line 159

def self.build_from_hash(attributes)
  new.build_from_hash(attributes)
end

.openapi_typesObject

Attribute type mapping.



55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/yapstone-payments/models/booking_info.rb', line 55

def self.openapi_types
  {
    :'checkin_date' => :'String',
    :'checkout_date' => :'String',
    :'nightly_rate' => :'Amount',
    :'number_of_adults' => :'Integer',
    :'number_of_children' => :'Integer',
    :'number_of_nights' => :'Integer',
    :'reservation_number' => :'String',
    :'nightly_tax' => :'Amount'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



131
132
133
134
135
136
137
138
139
140
141
142
# File 'lib/yapstone-payments/models/booking_info.rb', line 131

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      checkin_date == o.checkin_date &&
      checkout_date == o.checkout_date &&
      nightly_rate == o.nightly_rate &&
      number_of_adults == o.number_of_adults &&
      number_of_children == o.number_of_children &&
      number_of_nights == o.number_of_nights &&
      reservation_number == o.reservation_number &&
      nightly_tax == o.nightly_tax
end

#_deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
# File 'lib/yapstone-payments/models/booking_info.rb', line 187

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
    Yapstone.const_get(type).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

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



252
253
254
255
256
257
258
259
260
261
262
263
264
# File 'lib/yapstone-payments/models/booking_info.rb', line 252

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

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
# File 'lib/yapstone-payments/models/booking_info.rb', line 166

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  self.class.openapi_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

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


146
147
148
# File 'lib/yapstone-payments/models/booking_info.rb', line 146

def eql?(o)
  self == o
end

#hashInteger

Calculates hash code according to all attributes.

Returns:

  • (Integer)

    Hash code



152
153
154
# File 'lib/yapstone-payments/models/booking_info.rb', line 152

def hash
  [checkin_date, checkout_date, nightly_rate, number_of_adults, number_of_children, number_of_nights, reservation_number, nightly_tax].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



118
119
120
121
# File 'lib/yapstone-payments/models/booking_info.rb', line 118

def list_invalid_properties
  invalid_properties = Array.new
  invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



232
233
234
# File 'lib/yapstone-payments/models/booking_info.rb', line 232

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



238
239
240
241
242
243
244
245
246
# File 'lib/yapstone-payments/models/booking_info.rb', line 238

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_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



226
227
228
# File 'lib/yapstone-payments/models/booking_info.rb', line 226

def to_s
  to_hash.to_s
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



125
126
127
# File 'lib/yapstone-payments/models/booking_info.rb', line 125

def valid?
  true
end