avm_client 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +9 -0
  3. data/Gemfile.lock +79 -0
  4. data/README.md +104 -0
  5. data/Rakefile +10 -0
  6. data/avm_client.gemspec +45 -0
  7. data/docs/AdditionalFeatures.md +53 -0
  8. data/docs/BuiltForm.md +16 -0
  9. data/docs/DefaultApi.md +67 -0
  10. data/docs/EnergyEfficiency.md +16 -0
  11. data/docs/EnergyRating.md +16 -0
  12. data/docs/FloorLevel.md +16 -0
  13. data/docs/LeaseholdOrFreehold.md +16 -0
  14. data/docs/NewOrResale.md +16 -0
  15. data/docs/Problem.md +25 -0
  16. data/docs/PropertyFeatures.md +19 -0
  17. data/docs/PropertyType.md +16 -0
  18. data/docs/RequiredFeatures.md +27 -0
  19. data/docs/RoofInsulation.md +16 -0
  20. data/docs/RoofType.md +16 -0
  21. data/docs/Valuation.md +25 -0
  22. data/docs/ValuationPriceDistribution.md +21 -0
  23. data/docs/WallInsulation.md +16 -0
  24. data/docs/WallType.md +16 -0
  25. data/docs/WindowGlazingType.md +16 -0
  26. data/lib/avm_client/api/default_api.rb +146 -0
  27. data/lib/avm_client/avm_client.rb +386 -0
  28. data/lib/avm_client/avm_error.rb +57 -0
  29. data/lib/avm_client/configuration.rb +248 -0
  30. data/lib/avm_client/models/additional_features.rb +373 -0
  31. data/lib/avm_client/models/built_form.rb +40 -0
  32. data/lib/avm_client/models/energy_efficiency.rb +39 -0
  33. data/lib/avm_client/models/energy_rating.rb +42 -0
  34. data/lib/avm_client/models/floor_level.rb +59 -0
  35. data/lib/avm_client/models/leasehold_or_freehold.rb +36 -0
  36. data/lib/avm_client/models/new_or_resale.rb +36 -0
  37. data/lib/avm_client/models/problem.rb +264 -0
  38. data/lib/avm_client/models/property_features.rb +210 -0
  39. data/lib/avm_client/models/property_type.rb +38 -0
  40. data/lib/avm_client/models/required_features.rb +329 -0
  41. data/lib/avm_client/models/roof_insulation.rb +39 -0
  42. data/lib/avm_client/models/roof_type.rb +38 -0
  43. data/lib/avm_client/models/valuation.rb +239 -0
  44. data/lib/avm_client/models/valuation_price_distribution.rb +217 -0
  45. data/lib/avm_client/models/wall_insulation.rb +38 -0
  46. data/lib/avm_client/models/wall_type.rb +42 -0
  47. data/lib/avm_client/models/window_glazing_type.rb +40 -0
  48. data/lib/avm_client/version.rb +15 -0
  49. data/lib/avm_client.rb +58 -0
  50. metadata +272 -0
@@ -0,0 +1,217 @@
1
+ =begin
2
+ #AVM
3
+
4
+ #This is api for AVM (automated valuation machine)
5
+
6
+ The version of the AvmClient document: 1.0.0
7
+ Contact: info@enbisys.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.0.3
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module AvmClient
16
+ class ValuationPriceDistribution
17
+ # left subrange boundary
18
+ attr_accessor :price_from
19
+
20
+ # right subrange boundary
21
+ attr_accessor :price_to
22
+
23
+ # Probability that price is within the specified boundaries
24
+ attr_accessor :probability
25
+
26
+ # Attribute mapping from ruby-style variable name to JSON key.
27
+ def self.attribute_map
28
+ {
29
+ :'price_from' => :'priceFrom',
30
+ :'price_to' => :'priceTo',
31
+ :'probability' => :'probability'
32
+ }
33
+ end
34
+
35
+ # Attribute type mapping.
36
+ def self.avm_types
37
+ {
38
+ :'price_from' => :'Integer',
39
+ :'price_to' => :'Integer',
40
+ :'probability' => :'Float'
41
+ }
42
+ end
43
+
44
+ # Initializes the object
45
+ # @param [Hash] attributes Model attributes in the form of hash
46
+ def initialize(attributes = {})
47
+ if (!attributes.is_a?(Hash))
48
+ fail ArgumentError, "The input argument (attributes) must be a hash in `AvmClient::ValuationPriceDistribution` initialize method"
49
+ end
50
+
51
+ # check to see if the attribute exists and convert string to symbol for hash key
52
+ attributes = attributes.each_with_object({}) { |(k, v), h|
53
+ if (!self.class.attribute_map.key?(k.to_sym))
54
+ fail ArgumentError, "`#{k}` is not a valid attribute in `AvmClient::ValuationPriceDistribution`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
55
+ end
56
+ h[k.to_sym] = v
57
+ }
58
+
59
+ if attributes.key?(:'price_from')
60
+ self.price_from = attributes[:'price_from']
61
+ end
62
+
63
+ if attributes.key?(:'price_to')
64
+ self.price_to = attributes[:'price_to']
65
+ end
66
+
67
+ if attributes.key?(:'probability')
68
+ self.probability = attributes[:'probability']
69
+ end
70
+ end
71
+
72
+ # Show invalid properties with the reasons. Usually used together with valid?
73
+ # @return Array for valid properties with the reasons
74
+ def list_invalid_properties
75
+ invalid_properties = Array.new
76
+ invalid_properties
77
+ end
78
+
79
+ # Check to see if the all the properties in the model are valid
80
+ # @return true if the model is valid
81
+ def valid?
82
+ true
83
+ end
84
+
85
+ # Checks equality by comparing each attribute.
86
+ # @param [Object] Object to be compared
87
+ def ==(o)
88
+ return true if self.equal?(o)
89
+ self.class == o.class &&
90
+ price_from == o.price_from &&
91
+ price_to == o.price_to &&
92
+ probability == o.probability
93
+ end
94
+
95
+ # @see the `==` method
96
+ # @param [Object] Object to be compared
97
+ def eql?(o)
98
+ self == o
99
+ end
100
+
101
+ # Calculates hash code according to all attributes.
102
+ # @return [Integer] Hash code
103
+ def hash
104
+ [price_from, price_to, probability].hash
105
+ end
106
+
107
+ # Builds the object from hash
108
+ # @param [Hash] attributes Model attributes in the form of hash
109
+ # @return [Object] Returns the model itself
110
+ def self.build_from_hash(attributes)
111
+ new.build_from_hash(attributes)
112
+ end
113
+
114
+ # Builds the object from hash
115
+ # @param [Hash] attributes Model attributes in the form of hash
116
+ # @return [Object] Returns the model itself
117
+ def build_from_hash(attributes)
118
+ return nil unless attributes.is_a?(Hash)
119
+ self.class.avm_types.each_pair do |key, type|
120
+ if type =~ /\AArray<(.*)>/i
121
+ # check to ensure the input is an array given that the attribute
122
+ # is documented as an array but the input is not
123
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
124
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
125
+ end
126
+ elsif !attributes[self.class.attribute_map[key]].nil?
127
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
128
+ end # or else data not found in attributes(hash), not an issue as the data can be optional
129
+ end
130
+
131
+ self
132
+ end
133
+
134
+ # Deserializes the data based on type
135
+ # @param string type Data type
136
+ # @param string value Value to be deserialized
137
+ # @return [Object] Deserialized data
138
+ def _deserialize(type, value)
139
+ case type.to_sym
140
+ when :DateTime
141
+ DateTime.parse(value)
142
+ when :Date
143
+ Date.parse(value)
144
+ when :String
145
+ value.to_s
146
+ when :Integer
147
+ value.to_i
148
+ when :Float
149
+ value.to_f
150
+ when :Boolean
151
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
152
+ true
153
+ else
154
+ false
155
+ end
156
+ when :Object
157
+ # generic object (usually a Hash), return directly
158
+ value
159
+ when /\AArray<(?<inner_type>.+)>\z/
160
+ inner_type = Regexp.last_match[:inner_type]
161
+ value.map { |v| _deserialize(inner_type, v) }
162
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
163
+ k_type = Regexp.last_match[:k_type]
164
+ v_type = Regexp.last_match[:v_type]
165
+ {}.tap do |hash|
166
+ value.each do |k, v|
167
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
168
+ end
169
+ end
170
+ else # model
171
+ AvmClient.const_get(type).build_from_hash(value)
172
+ end
173
+ end
174
+
175
+ # Returns the string representation of the object
176
+ # @return [String] String presentation of the object
177
+ def to_s
178
+ to_hash.to_s
179
+ end
180
+
181
+ # to_body is an alias to to_hash (backward compatibility)
182
+ # @return [Hash] Returns the object in the form of hash
183
+ def to_body
184
+ to_hash
185
+ end
186
+
187
+ # Returns the object in the form of hash
188
+ # @return [Hash] Returns the object in the form of hash
189
+ def to_hash
190
+ hash = {}
191
+ self.class.attribute_map.each_pair do |attr, param|
192
+ value = self.send(attr)
193
+ next if value.nil?
194
+ hash[param] = _to_hash(value)
195
+ end
196
+ hash
197
+ end
198
+
199
+ # Outputs non-array value in the form of hash
200
+ # For object, use to_hash. Otherwise, just return the value
201
+ # @param [Object] value Any valid value
202
+ # @return [Hash] Returns the value in the form of hash
203
+ def _to_hash(value)
204
+ if value.is_a?(Array)
205
+ value.compact.map { |v| _to_hash(v) }
206
+ elsif value.is_a?(Hash)
207
+ {}.tap do |hash|
208
+ value.each { |k, v| hash[k] = _to_hash(v) }
209
+ end
210
+ elsif value.respond_to? :to_hash
211
+ value.to_hash
212
+ else
213
+ value
214
+ end
215
+ end
216
+ end
217
+ end
@@ -0,0 +1,38 @@
1
+ =begin
2
+ #AVM
3
+
4
+ #This is api for AVM (automated valuation machine)
5
+
6
+ The version of the AvmClient document: 1.0.0
7
+ Contact: info@enbisys.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.0.3
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module AvmClient
16
+ class WallInsulation
17
+ NO = "no".freeze
18
+ PARTIAL = "partial".freeze
19
+ INSULATED = "insulated".freeze
20
+ ADDITIONAL = "additional".freeze
21
+
22
+ # Builds the enum from string
23
+ # @param [String] The enum value in the form of the string
24
+ # @return [String] The enum value
25
+ def self.build_from_hash(value)
26
+ new.build_from_hash(value)
27
+ end
28
+
29
+ # Builds the enum from string
30
+ # @param [String] The enum value in the form of the string
31
+ # @return [String] The enum value
32
+ def build_from_hash(value)
33
+ constantValues = WallInsulation.constants.select { |c| WallInsulation::const_get(c) == value }
34
+ raise "Invalid ENUM value #{value} for class #WallInsulation" if constantValues.empty?
35
+ value
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,42 @@
1
+ =begin
2
+ #AVM
3
+
4
+ #This is api for AVM (automated valuation machine)
5
+
6
+ The version of the AvmClient document: 1.0.0
7
+ Contact: info@enbisys.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.0.3
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module AvmClient
16
+ class WallType
17
+ CAVITY_WALL = "cavity_wall".freeze
18
+ COB = "cob".freeze
19
+ GRANITE_OR_WHIN = "granite_or_whin".freeze
20
+ PARK_HOME_WALL = "park_home_wall".freeze
21
+ SANDSTONE = "sandstone".freeze
22
+ SOLID_BRICK = "solid_brick".freeze
23
+ SYSTEM_BUILD = "system_build".freeze
24
+ TIMBER_FRAME = "timber_frame".freeze
25
+
26
+ # Builds the enum from string
27
+ # @param [String] The enum value in the form of the string
28
+ # @return [String] The enum value
29
+ def self.build_from_hash(value)
30
+ new.build_from_hash(value)
31
+ end
32
+
33
+ # Builds the enum from string
34
+ # @param [String] The enum value in the form of the string
35
+ # @return [String] The enum value
36
+ def build_from_hash(value)
37
+ constantValues = WallType.constants.select { |c| WallType::const_get(c) == value }
38
+ raise "Invalid ENUM value #{value} for class #WallType" if constantValues.empty?
39
+ value
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,40 @@
1
+ =begin
2
+ #AVM
3
+
4
+ #This is api for AVM (automated valuation machine)
5
+
6
+ The version of the AvmClient document: 1.0.0
7
+ Contact: info@enbisys.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.0.3
10
+
11
+ =end
12
+
13
+ require 'date'
14
+
15
+ module AvmClient
16
+ class WindowGlazingType
17
+ SINGLE = "single".freeze
18
+ SECONDARY = "secondary".freeze
19
+ DOUBLE = "double".freeze
20
+ TRIPLE = "triple".freeze
21
+ MULTIPLE = "multiple".freeze
22
+ HIGH_PERFORMANCE = "high_performance".freeze
23
+
24
+ # Builds the enum from string
25
+ # @param [String] The enum value in the form of the string
26
+ # @return [String] The enum value
27
+ def self.build_from_hash(value)
28
+ new.build_from_hash(value)
29
+ end
30
+
31
+ # Builds the enum from string
32
+ # @param [String] The enum value in the form of the string
33
+ # @return [String] The enum value
34
+ def build_from_hash(value)
35
+ constantValues = WindowGlazingType.constants.select { |c| WindowGlazingType::const_get(c) == value }
36
+ raise "Invalid ENUM value #{value} for class #WindowGlazingType" if constantValues.empty?
37
+ value
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,15 @@
1
+ =begin
2
+ #AVM
3
+
4
+ #This is api for AVM (automated valuation machine)
5
+
6
+ The version of the AvmClient document: 1.0.0
7
+ Contact: info@enbisys.com
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.0.3
10
+
11
+ =end
12
+
13
+ module AvmClient
14
+ VERSION = '1.0.0'
15
+ end
data/lib/avm_client.rb ADDED
@@ -0,0 +1,58 @@
1
+ =begin
2
+ #AVM
3
+
4
+ #This is api for AVM (automated valuation machine)
5
+
6
+ The version of the avm document: 1.0.0
7
+ Contact: info@enbisys.com
8
+ Generated by: https://openapi-generator.tech
9
+ avm Generator version: 4.0.3
10
+
11
+ =end
12
+
13
+ # Common files
14
+ require 'avm_client/avm_client'
15
+ require 'avm_client/avm_error'
16
+ require 'avm_client/version'
17
+ require 'avm_client/configuration'
18
+
19
+ # Models
20
+ require 'avm_client/models/additional_features'
21
+ require 'avm_client/models/built_form'
22
+ require 'avm_client/models/energy_efficiency'
23
+ require 'avm_client/models/energy_rating'
24
+ require 'avm_client/models/floor_level'
25
+ require 'avm_client/models/leasehold_or_freehold'
26
+ require 'avm_client/models/new_or_resale'
27
+ require 'avm_client/models/problem'
28
+ require 'avm_client/models/property_features'
29
+ require 'avm_client/models/property_type'
30
+ require 'avm_client/models/required_features'
31
+ require 'avm_client/models/roof_insulation'
32
+ require 'avm_client/models/roof_type'
33
+ require 'avm_client/models/valuation'
34
+ require 'avm_client/models/valuation_price_distribution'
35
+ require 'avm_client/models/wall_insulation'
36
+ require 'avm_client/models/wall_type'
37
+ require 'avm_client/models/window_glazing_type'
38
+
39
+ # APIs
40
+ require 'avm_client/api/default_api'
41
+
42
+ module AvmClient
43
+ class << self
44
+ # Customize default settings for the SDK using block.
45
+ # AvmClient.configure do |config|
46
+ # config.username = "xxx"
47
+ # config.password = "xxx"
48
+ # end
49
+ # If no block given, return the default Configuration object.
50
+ def configure
51
+ if block_given?
52
+ yield(Configuration.default)
53
+ else
54
+ Configuration.default
55
+ end
56
+ end
57
+ end
58
+ end
metadata ADDED
@@ -0,0 +1,272 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: avm_client
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - enbisys.com
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-07-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: typhoeus
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 1.0.1
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '1.0'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 1.0.1
33
+ - !ruby/object:Gem::Dependency
34
+ name: json
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '2.1'
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 2.1.0
43
+ type: :runtime
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '2.1'
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 2.1.0
53
+ - !ruby/object:Gem::Dependency
54
+ name: rspec
55
+ requirement: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - "~>"
58
+ - !ruby/object:Gem::Version
59
+ version: '3.6'
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: 3.6.0
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '3.6'
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: 3.6.0
73
+ - !ruby/object:Gem::Dependency
74
+ name: vcr
75
+ requirement: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - "~>"
78
+ - !ruby/object:Gem::Version
79
+ version: '3.0'
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: 3.0.1
83
+ type: :development
84
+ prerelease: false
85
+ version_requirements: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '3.0'
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: 3.0.1
93
+ - !ruby/object:Gem::Dependency
94
+ name: webmock
95
+ requirement: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - "~>"
98
+ - !ruby/object:Gem::Version
99
+ version: '1.24'
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: 1.24.3
103
+ type: :development
104
+ prerelease: false
105
+ version_requirements: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - "~>"
108
+ - !ruby/object:Gem::Version
109
+ version: '1.24'
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: 1.24.3
113
+ - !ruby/object:Gem::Dependency
114
+ name: autotest
115
+ requirement: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - "~>"
118
+ - !ruby/object:Gem::Version
119
+ version: '4.4'
120
+ - - ">="
121
+ - !ruby/object:Gem::Version
122
+ version: 4.4.6
123
+ type: :development
124
+ prerelease: false
125
+ version_requirements: !ruby/object:Gem::Requirement
126
+ requirements:
127
+ - - "~>"
128
+ - !ruby/object:Gem::Version
129
+ version: '4.4'
130
+ - - ">="
131
+ - !ruby/object:Gem::Version
132
+ version: 4.4.6
133
+ - !ruby/object:Gem::Dependency
134
+ name: autotest-rails-pure
135
+ requirement: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - "~>"
138
+ - !ruby/object:Gem::Version
139
+ version: '4.1'
140
+ - - ">="
141
+ - !ruby/object:Gem::Version
142
+ version: 4.1.2
143
+ type: :development
144
+ prerelease: false
145
+ version_requirements: !ruby/object:Gem::Requirement
146
+ requirements:
147
+ - - "~>"
148
+ - !ruby/object:Gem::Version
149
+ version: '4.1'
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: 4.1.2
153
+ - !ruby/object:Gem::Dependency
154
+ name: autotest-growl
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: '0.2'
160
+ - - ">="
161
+ - !ruby/object:Gem::Version
162
+ version: 0.2.16
163
+ type: :development
164
+ prerelease: false
165
+ version_requirements: !ruby/object:Gem::Requirement
166
+ requirements:
167
+ - - "~>"
168
+ - !ruby/object:Gem::Version
169
+ version: '0.2'
170
+ - - ">="
171
+ - !ruby/object:Gem::Version
172
+ version: 0.2.16
173
+ - !ruby/object:Gem::Dependency
174
+ name: autotest-fsevent
175
+ requirement: !ruby/object:Gem::Requirement
176
+ requirements:
177
+ - - "~>"
178
+ - !ruby/object:Gem::Version
179
+ version: '0.2'
180
+ - - ">="
181
+ - !ruby/object:Gem::Version
182
+ version: 0.2.12
183
+ type: :development
184
+ prerelease: false
185
+ version_requirements: !ruby/object:Gem::Requirement
186
+ requirements:
187
+ - - "~>"
188
+ - !ruby/object:Gem::Version
189
+ version: '0.2'
190
+ - - ">="
191
+ - !ruby/object:Gem::Version
192
+ version: 0.2.12
193
+ description: This is api for AVM (automated valuation machine)
194
+ email:
195
+ - info@enbisys.com
196
+ executables: []
197
+ extensions: []
198
+ extra_rdoc_files: []
199
+ files:
200
+ - Gemfile
201
+ - Gemfile.lock
202
+ - README.md
203
+ - Rakefile
204
+ - avm_client.gemspec
205
+ - docs/AdditionalFeatures.md
206
+ - docs/BuiltForm.md
207
+ - docs/DefaultApi.md
208
+ - docs/EnergyEfficiency.md
209
+ - docs/EnergyRating.md
210
+ - docs/FloorLevel.md
211
+ - docs/LeaseholdOrFreehold.md
212
+ - docs/NewOrResale.md
213
+ - docs/Problem.md
214
+ - docs/PropertyFeatures.md
215
+ - docs/PropertyType.md
216
+ - docs/RequiredFeatures.md
217
+ - docs/RoofInsulation.md
218
+ - docs/RoofType.md
219
+ - docs/Valuation.md
220
+ - docs/ValuationPriceDistribution.md
221
+ - docs/WallInsulation.md
222
+ - docs/WallType.md
223
+ - docs/WindowGlazingType.md
224
+ - lib/avm_client.rb
225
+ - lib/avm_client/api/default_api.rb
226
+ - lib/avm_client/avm_client.rb
227
+ - lib/avm_client/avm_error.rb
228
+ - lib/avm_client/configuration.rb
229
+ - lib/avm_client/models/additional_features.rb
230
+ - lib/avm_client/models/built_form.rb
231
+ - lib/avm_client/models/energy_efficiency.rb
232
+ - lib/avm_client/models/energy_rating.rb
233
+ - lib/avm_client/models/floor_level.rb
234
+ - lib/avm_client/models/leasehold_or_freehold.rb
235
+ - lib/avm_client/models/new_or_resale.rb
236
+ - lib/avm_client/models/problem.rb
237
+ - lib/avm_client/models/property_features.rb
238
+ - lib/avm_client/models/property_type.rb
239
+ - lib/avm_client/models/required_features.rb
240
+ - lib/avm_client/models/roof_insulation.rb
241
+ - lib/avm_client/models/roof_type.rb
242
+ - lib/avm_client/models/valuation.rb
243
+ - lib/avm_client/models/valuation_price_distribution.rb
244
+ - lib/avm_client/models/wall_insulation.rb
245
+ - lib/avm_client/models/wall_type.rb
246
+ - lib/avm_client/models/window_glazing_type.rb
247
+ - lib/avm_client/version.rb
248
+ homepage: https://avm.enbisys.com
249
+ licenses:
250
+ - Unlicense
251
+ metadata: {}
252
+ post_install_message:
253
+ rdoc_options: []
254
+ require_paths:
255
+ - lib
256
+ required_ruby_version: !ruby/object:Gem::Requirement
257
+ requirements:
258
+ - - ">="
259
+ - !ruby/object:Gem::Version
260
+ version: '1.9'
261
+ required_rubygems_version: !ruby/object:Gem::Requirement
262
+ requirements:
263
+ - - ">="
264
+ - !ruby/object:Gem::Version
265
+ version: '0'
266
+ requirements: []
267
+ rubyforge_project:
268
+ rubygems_version: 2.7.6
269
+ signing_key:
270
+ specification_version: 4
271
+ summary: AVM Ruby Gem
272
+ test_files: []