Class: TripletexRubyClient::TravelExpenseRateCategory
- Inherits:
-
Object
- Object
- TripletexRubyClient::TravelExpenseRateCategory
- Defined in:
- lib/tripletex_ruby_client/models/travel_expense_rate_category.rb
Defined Under Namespace
Classes: EnumAttributeValidator
Instance Attribute Summary collapse
-
#amelding_wage_code ⇒ Object
Returns the value of attribute amelding_wage_code.
-
#changes ⇒ Object
Returns the value of attribute changes.
-
#from_date ⇒ Object
Returns the value of attribute from_date.
-
#id ⇒ Object
Returns the value of attribute id.
-
#is_requires_overnight_accommodation ⇒ Object
Returns the value of attribute is_requires_overnight_accommodation.
-
#is_requires_zone ⇒ Object
Returns the value of attribute is_requires_zone.
-
#is_valid_accommodation ⇒ Object
Returns the value of attribute is_valid_accommodation.
-
#is_valid_day_trip ⇒ Object
Returns the value of attribute is_valid_day_trip.
-
#is_valid_domestic ⇒ Object
Returns the value of attribute is_valid_domestic.
-
#is_valid_foreign_travel ⇒ Object
Returns the value of attribute is_valid_foreign_travel.
-
#name ⇒ Object
Returns the value of attribute name.
-
#to_date ⇒ Object
Returns the value of attribute to_date.
-
#type ⇒ Object
Returns the value of attribute type.
-
#url ⇒ Object
Returns the value of attribute url.
-
#version ⇒ Object
Returns the value of attribute version.
-
#wage_code_number ⇒ Object
Returns the value of attribute wage_code_number.
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 = {}) ⇒ TravelExpenseRateCategory
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 = {}) ⇒ TravelExpenseRateCategory
Initializes the object
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 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 179 180 181 182 183 184 185 186 187 188 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 117 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?(:'id') self.id = attributes[:'id'] end if attributes.has_key?(:'version') self.version = attributes[:'version'] end if attributes.has_key?(:'changes') if (value = attributes[:'changes']).is_a?(Array) self.changes = value end end if attributes.has_key?(:'url') self.url = attributes[:'url'] end if attributes.has_key?(:'name') self.name = attributes[:'name'] end if attributes.has_key?(:'ameldingWageCode') self.amelding_wage_code = attributes[:'ameldingWageCode'] end if attributes.has_key?(:'wageCodeNumber') self.wage_code_number = attributes[:'wageCodeNumber'] end if attributes.has_key?(:'isValidDayTrip') self.is_valid_day_trip = attributes[:'isValidDayTrip'] end if attributes.has_key?(:'isValidAccommodation') self.is_valid_accommodation = attributes[:'isValidAccommodation'] end if attributes.has_key?(:'isValidDomestic') self.is_valid_domestic = attributes[:'isValidDomestic'] end if attributes.has_key?(:'isValidForeignTravel') self.is_valid_foreign_travel = attributes[:'isValidForeignTravel'] end if attributes.has_key?(:'isRequiresZone') self.is_requires_zone = attributes[:'isRequiresZone'] end if attributes.has_key?(:'isRequiresOvernightAccommodation') self.is_requires_overnight_accommodation = attributes[:'isRequiresOvernightAccommodation'] end if attributes.has_key?(:'fromDate') self.from_date = attributes[:'fromDate'] end if attributes.has_key?(:'toDate') self.to_date = attributes[:'toDate'] end if attributes.has_key?(:'type') self.type = attributes[:'type'] end end |
Instance Attribute Details
#amelding_wage_code ⇒ Object
Returns the value of attribute amelding_wage_code.
27 28 29 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 27 def amelding_wage_code @amelding_wage_code end |
#changes ⇒ Object
Returns the value of attribute changes.
21 22 23 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 21 def changes @changes end |
#from_date ⇒ Object
Returns the value of attribute from_date.
43 44 45 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 43 def from_date @from_date end |
#id ⇒ Object
Returns the value of attribute id.
17 18 19 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 17 def id @id end |
#is_requires_overnight_accommodation ⇒ Object
Returns the value of attribute is_requires_overnight_accommodation.
41 42 43 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 41 def is_requires_overnight_accommodation @is_requires_overnight_accommodation end |
#is_requires_zone ⇒ Object
Returns the value of attribute is_requires_zone.
39 40 41 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 39 def is_requires_zone @is_requires_zone end |
#is_valid_accommodation ⇒ Object
Returns the value of attribute is_valid_accommodation.
33 34 35 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 33 def is_valid_accommodation @is_valid_accommodation end |
#is_valid_day_trip ⇒ Object
Returns the value of attribute is_valid_day_trip.
31 32 33 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 31 def is_valid_day_trip @is_valid_day_trip end |
#is_valid_domestic ⇒ Object
Returns the value of attribute is_valid_domestic.
35 36 37 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 35 def is_valid_domestic @is_valid_domestic end |
#is_valid_foreign_travel ⇒ Object
Returns the value of attribute is_valid_foreign_travel.
37 38 39 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 37 def is_valid_foreign_travel @is_valid_foreign_travel end |
#name ⇒ Object
Returns the value of attribute name.
25 26 27 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 25 def name @name end |
#to_date ⇒ Object
Returns the value of attribute to_date.
45 46 47 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 45 def to_date @to_date end |
#type ⇒ Object
Returns the value of attribute type.
47 48 49 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 47 def type @type end |
#url ⇒ Object
Returns the value of attribute url.
23 24 25 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 23 def url @url end |
#version ⇒ Object
Returns the value of attribute version.
19 20 21 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 19 def version @version end |
#wage_code_number ⇒ Object
Returns the value of attribute wage_code_number.
29 30 31 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 29 def wage_code_number @wage_code_number end |
Class Method Details
.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 87 88 89 90 91 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 72 def self.attribute_map { :'id' => :'id', :'version' => :'version', :'changes' => :'changes', :'url' => :'url', :'name' => :'name', :'amelding_wage_code' => :'ameldingWageCode', :'wage_code_number' => :'wageCodeNumber', :'is_valid_day_trip' => :'isValidDayTrip', :'is_valid_accommodation' => :'isValidAccommodation', :'is_valid_domestic' => :'isValidDomestic', :'is_valid_foreign_travel' => :'isValidForeignTravel', :'is_requires_zone' => :'isRequiresZone', :'is_requires_overnight_accommodation' => :'isRequiresOvernightAccommodation', :'from_date' => :'fromDate', :'to_date' => :'toDate', :'type' => :'type' } end |
.swagger_types ⇒ Object
Attribute type mapping.
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 94 def self.swagger_types { :'id' => :'Integer', :'version' => :'Integer', :'changes' => :'Array<Change>', :'url' => :'String', :'name' => :'String', :'amelding_wage_code' => :'Integer', :'wage_code_number' => :'String', :'is_valid_day_trip' => :'BOOLEAN', :'is_valid_accommodation' => :'BOOLEAN', :'is_valid_domestic' => :'BOOLEAN', :'is_valid_foreign_travel' => :'BOOLEAN', :'is_requires_zone' => :'BOOLEAN', :'is_requires_overnight_accommodation' => :'BOOLEAN', :'from_date' => :'String', :'to_date' => :'String', :'type' => :'String' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 242 def ==(o) return true if self.equal?(o) self.class == o.class && id == o.id && version == o.version && changes == o.changes && url == o.url && name == o.name && amelding_wage_code == o.amelding_wage_code && wage_code_number == o.wage_code_number && is_valid_day_trip == o.is_valid_day_trip && is_valid_accommodation == o.is_valid_accommodation && is_valid_domestic == o.is_valid_domestic && is_valid_foreign_travel == o.is_valid_foreign_travel && is_requires_zone == o.is_requires_zone && is_requires_overnight_accommodation == o.is_requires_overnight_accommodation && from_date == o.from_date && to_date == o.to_date && type == o.type end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
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 332 333 334 335 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 299 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 = TripletexRubyClient.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
365 366 367 368 369 370 371 372 373 374 375 376 377 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.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
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 278 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
265 266 267 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 265 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
271 272 273 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 271 def hash [id, version, changes, url, name, amelding_wage_code, wage_code_number, is_valid_day_trip, is_valid_accommodation, is_valid_domestic, is_valid_foreign_travel, is_requires_zone, is_requires_overnight_accommodation, from_date, to_date, type].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 192 def list_invalid_properties invalid_properties = Array.new if !@wage_code_number.nil? && @wage_code_number.to_s.length > 10 invalid_properties.push('invalid value for "wage_code_number", the character length must be smaller than or equal to 10.') end if @from_date.nil? invalid_properties.push('invalid value for "from_date", from_date cannot be nil.') end if @to_date.nil? invalid_properties.push('invalid value for "to_date", to_date cannot be nil.') end invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
345 346 347 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 345 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
351 352 353 354 355 356 357 358 359 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 351 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
339 340 341 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 339 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
211 212 213 214 215 216 217 218 |
# File 'lib/tripletex_ruby_client/models/travel_expense_rate_category.rb', line 211 def valid? return false if !@wage_code_number.nil? && @wage_code_number.to_s.length > 10 return false if @from_date.nil? return false if @to_date.nil? type_validator = EnumAttributeValidator.new('String', ['PER_DIEM', 'ACCOMMODATION_ALLOWANCE', 'MILEAGE_ALLOWANCE']) return false unless type_validator.valid?(@type) true end |