ipgeolocation_sdk 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +9 -0
- data/LICENSE +21 -0
- data/README.md +2124 -0
- data/Rakefile +10 -0
- data/docs/ASNConnection.md +22 -0
- data/docs/ASNDetails.md +48 -0
- data/docs/ASNLookupApi.md +89 -0
- data/docs/ASNResponse.md +20 -0
- data/docs/ASNResponseXML.md +20 -0
- data/docs/ASNResponseXMLAsn.md +48 -0
- data/docs/Abuse.md +40 -0
- data/docs/AbuseContactApi.md +85 -0
- data/docs/AbuseResponse.md +20 -0
- data/docs/AbuseResponseXML.md +20 -0
- data/docs/Astronomy.md +68 -0
- data/docs/AstronomyApi.md +97 -0
- data/docs/AstronomyEvening.md +36 -0
- data/docs/AstronomyLocation.md +50 -0
- data/docs/AstronomyMorning.md +36 -0
- data/docs/AstronomyResponse.md +22 -0
- data/docs/AstronomyXMLResponse.md +22 -0
- data/docs/BulkIPGeolocation.md +42 -0
- data/docs/BulkIPSecurity.md +42 -0
- data/docs/CountryMetadata.md +22 -0
- data/docs/Currency.md +22 -0
- data/docs/ErrorResponse.md +18 -0
- data/docs/ErrorXMLResponse.md +18 -0
- data/docs/ErrorXMLResponseArray.md +18 -0
- data/docs/GeolocationResponse.md +38 -0
- data/docs/GeolocationXMLResponse.md +38 -0
- data/docs/GeolocationXMLResponseArray.md +38 -0
- data/docs/GetBulkIpGeolocation200ResponseInner1.md +49 -0
- data/docs/GetBulkIpGeolocationRequest.md +18 -0
- data/docs/GetBulkIpSecurityInfo200ResponseInner1.md +49 -0
- data/docs/IPLocationApi.md +175 -0
- data/docs/Location.md +58 -0
- data/docs/LocationMinimal.md +52 -0
- data/docs/Network.md +22 -0
- data/docs/NetworkAsn.md +38 -0
- data/docs/NetworkCompany.md +22 -0
- data/docs/NetworkMinimal.md +20 -0
- data/docs/NetworkMinimalAsn.md +22 -0
- data/docs/NetworkMinimalCompany.md +18 -0
- data/docs/ParseBulkUserAgentStringsRequest.md +18 -0
- data/docs/ParseUserAgentStringRequest.md +18 -0
- data/docs/Security.md +38 -0
- data/docs/SecurityAPIResponse.md +34 -0
- data/docs/SecurityAPIXMLResponse.md +34 -0
- data/docs/SecurityAPIXMLResponseArray.md +34 -0
- data/docs/SecurityApi.md +175 -0
- data/docs/TimeConversionApi.md +109 -0
- data/docs/TimeConversionResponse.md +24 -0
- data/docs/TimeConversionXMLResponse.md +24 -0
- data/docs/TimeZone.md +36 -0
- data/docs/TimeZoneDetailedResponse.md +26 -0
- data/docs/TimeZoneDetailedXMLResponse.md +26 -0
- data/docs/TimeZoneDstEnd.md +28 -0
- data/docs/TimeZoneDstStart.md +28 -0
- data/docs/TimezoneAirport.md +40 -0
- data/docs/TimezoneApi.md +99 -0
- data/docs/TimezoneDetail.md +56 -0
- data/docs/TimezoneDetailDstEnd.md +28 -0
- data/docs/TimezoneDetailDstStart.md +28 -0
- data/docs/TimezoneLocation.md +48 -0
- data/docs/TimezoneLocode.md +32 -0
- data/docs/UserAgentApi.md +235 -0
- data/docs/UserAgentData.md +32 -0
- data/docs/UserAgentDataDevice.md +24 -0
- data/docs/UserAgentDataEngine.md +24 -0
- data/docs/UserAgentDataOperatingSystem.md +26 -0
- data/docs/UserAgentXMLData.md +32 -0
- data/docs/UserAgentXMLDataArray.md +32 -0
- data/git_push.sh +57 -0
- data/ipgeolocation_sdk.gemspec +29 -0
- data/lib/ipgeolocation_sdk/api/abuse_contact_api.rb +86 -0
- data/lib/ipgeolocation_sdk/api/asn_lookup_api.rb +92 -0
- data/lib/ipgeolocation_sdk/api/astronomy_api.rb +116 -0
- data/lib/ipgeolocation_sdk/api/ip_geolocation_api.rb +186 -0
- data/lib/ipgeolocation_sdk/api/ip_security_api.rb +184 -0
- data/lib/ipgeolocation_sdk/api/time_conversion_api.rb +122 -0
- data/lib/ipgeolocation_sdk/api/timezone_api.rb +113 -0
- data/lib/ipgeolocation_sdk/api/user_agent_api.rb +158 -0
- data/lib/ipgeolocation_sdk/api_client.rb +393 -0
- data/lib/ipgeolocation_sdk/api_error.rb +58 -0
- data/lib/ipgeolocation_sdk/configuration.rb +308 -0
- data/lib/ipgeolocation_sdk/models/abuse.rb +305 -0
- data/lib/ipgeolocation_sdk/models/abuse_response.rb +229 -0
- data/lib/ipgeolocation_sdk/models/abuse_response_xml.rb +229 -0
- data/lib/ipgeolocation_sdk/models/asn_connection.rb +238 -0
- data/lib/ipgeolocation_sdk/models/asn_response.rb +230 -0
- data/lib/ipgeolocation_sdk/models/asn_response_asn.rb +368 -0
- data/lib/ipgeolocation_sdk/models/asn_response_xml.rb +229 -0
- data/lib/ipgeolocation_sdk/models/asn_response_xml_asn.rb +364 -0
- data/lib/ipgeolocation_sdk/models/astronomy.rb +445 -0
- data/lib/ipgeolocation_sdk/models/astronomy_evening.rb +301 -0
- data/lib/ipgeolocation_sdk/models/astronomy_location.rb +364 -0
- data/lib/ipgeolocation_sdk/models/astronomy_morning.rb +301 -0
- data/lib/ipgeolocation_sdk/models/astronomy_response.rb +238 -0
- data/lib/ipgeolocation_sdk/models/astronomy_xml_response.rb +238 -0
- data/lib/ipgeolocation_sdk/models/bulk_ip_geolocation.rb +113 -0
- data/lib/ipgeolocation_sdk/models/bulk_ip_security.rb +113 -0
- data/lib/ipgeolocation_sdk/models/country_metadata.rb +240 -0
- data/lib/ipgeolocation_sdk/models/currency.rb +238 -0
- data/lib/ipgeolocation_sdk/models/error_response.rb +220 -0
- data/lib/ipgeolocation_sdk/models/error_xml_response.rb +220 -0
- data/lib/ipgeolocation_sdk/models/error_xml_response_array.rb +220 -0
- data/lib/ipgeolocation_sdk/models/geolocation_response.rb +310 -0
- data/lib/ipgeolocation_sdk/models/geolocation_xml_response.rb +310 -0
- data/lib/ipgeolocation_sdk/models/geolocation_xml_response_array.rb +310 -0
- data/lib/ipgeolocation_sdk/models/get_bulk_ip_geolocation200_response_inner1.rb +105 -0
- data/lib/ipgeolocation_sdk/models/get_bulk_ip_geolocation_request.rb +241 -0
- data/lib/ipgeolocation_sdk/models/get_bulk_ip_security_info200_response_inner1.rb +105 -0
- data/lib/ipgeolocation_sdk/models/location.rb +400 -0
- data/lib/ipgeolocation_sdk/models/location_minimal.rb +373 -0
- data/lib/ipgeolocation_sdk/models/network.rb +238 -0
- data/lib/ipgeolocation_sdk/models/network_asn.rb +310 -0
- data/lib/ipgeolocation_sdk/models/network_company.rb +238 -0
- data/lib/ipgeolocation_sdk/models/network_minimal.rb +229 -0
- data/lib/ipgeolocation_sdk/models/network_minimal_asn.rb +238 -0
- data/lib/ipgeolocation_sdk/models/network_minimal_company.rb +220 -0
- data/lib/ipgeolocation_sdk/models/parse_bulk_user_agent_strings_request.rb +222 -0
- data/lib/ipgeolocation_sdk/models/parse_user_agent_string_request.rb +220 -0
- data/lib/ipgeolocation_sdk/models/security.rb +310 -0
- data/lib/ipgeolocation_sdk/models/security_api_response.rb +292 -0
- data/lib/ipgeolocation_sdk/models/security_apixml_response.rb +292 -0
- data/lib/ipgeolocation_sdk/models/security_apixml_response_array.rb +292 -0
- data/lib/ipgeolocation_sdk/models/time_conversion_response.rb +247 -0
- data/lib/ipgeolocation_sdk/models/time_conversion_xml_response.rb +247 -0
- data/lib/ipgeolocation_sdk/models/time_zone.rb +301 -0
- data/lib/ipgeolocation_sdk/models/time_zone_detailed_response.rb +256 -0
- data/lib/ipgeolocation_sdk/models/time_zone_detailed_xml_response.rb +256 -0
- data/lib/ipgeolocation_sdk/models/time_zone_dst_end.rb +265 -0
- data/lib/ipgeolocation_sdk/models/time_zone_dst_start.rb +265 -0
- data/lib/ipgeolocation_sdk/models/timezone_airport.rb +319 -0
- data/lib/ipgeolocation_sdk/models/timezone_detail.rb +391 -0
- data/lib/ipgeolocation_sdk/models/timezone_detail_dst_end.rb +265 -0
- data/lib/ipgeolocation_sdk/models/timezone_detail_dst_start.rb +265 -0
- data/lib/ipgeolocation_sdk/models/timezone_location.rb +355 -0
- data/lib/ipgeolocation_sdk/models/timezone_locode.rb +283 -0
- data/lib/ipgeolocation_sdk/models/user_agent_data.rb +283 -0
- data/lib/ipgeolocation_sdk/models/user_agent_data_device.rb +247 -0
- data/lib/ipgeolocation_sdk/models/user_agent_data_engine.rb +247 -0
- data/lib/ipgeolocation_sdk/models/user_agent_data_operating_system.rb +256 -0
- data/lib/ipgeolocation_sdk/models/user_agent_xml_data.rb +283 -0
- data/lib/ipgeolocation_sdk/models/user_agent_xml_data_array.rb +283 -0
- data/lib/ipgeolocation_sdk/version.rb +15 -0
- data/lib/ipgeolocation_sdk.rb +107 -0
- data/spec/api/abuse_contact_api_spec.rb +48 -0
- data/spec/api/asn_lookup_api_spec.rb +50 -0
- data/spec/api/astronomy_api_spec.rb +54 -0
- data/spec/api/ip_location_api_spec.rb +67 -0
- data/spec/api/security_api_spec.rb +67 -0
- data/spec/api/time_conversion_api_spec.rb +60 -0
- data/spec/api/timezone_api_spec.rb +56 -0
- data/spec/api/user_agent_api_spec.rb +74 -0
- data/spec/models/abuse_response_spec.rb +42 -0
- data/spec/models/abuse_response_xml_spec.rb +42 -0
- data/spec/models/abuse_spec.rb +90 -0
- data/spec/models/asn_connection_spec.rb +48 -0
- data/spec/models/asn_response_asn_spec.rb +126 -0
- data/spec/models/asn_response_spec.rb +42 -0
- data/spec/models/asn_response_xml_asn_spec.rb +126 -0
- data/spec/models/asn_response_xml_spec.rb +42 -0
- data/spec/models/astronomy_evening_spec.rb +90 -0
- data/spec/models/astronomy_location_spec.rb +132 -0
- data/spec/models/astronomy_morning_spec.rb +90 -0
- data/spec/models/astronomy_response_spec.rb +48 -0
- data/spec/models/astronomy_spec.rb +186 -0
- data/spec/models/astronomy_xml_response_spec.rb +48 -0
- data/spec/models/country_metadata_spec.rb +48 -0
- data/spec/models/currency_spec.rb +48 -0
- data/spec/models/error_response_spec.rb +36 -0
- data/spec/models/error_xml_response_array_spec.rb +36 -0
- data/spec/models/error_xml_response_spec.rb +36 -0
- data/spec/models/geolocation_response_spec.rb +96 -0
- data/spec/models/geolocation_xml_response_array_spec.rb +96 -0
- data/spec/models/geolocation_xml_response_spec.rb +96 -0
- data/spec/models/get_bulk_ip_geolocation200_response_inner1_spec.rb +32 -0
- data/spec/models/get_bulk_ip_geolocation200_response_inner_spec.rb +32 -0
- data/spec/models/get_bulk_ip_geolocation_request_spec.rb +36 -0
- data/spec/models/get_bulk_ip_security_info200_response_inner1_spec.rb +32 -0
- data/spec/models/get_bulk_ip_security_info200_response_inner_spec.rb +32 -0
- data/spec/models/location_minimal_spec.rb +138 -0
- data/spec/models/location_spec.rb +156 -0
- data/spec/models/network_asn_spec.rb +96 -0
- data/spec/models/network_company_spec.rb +48 -0
- data/spec/models/network_minimal_asn_spec.rb +48 -0
- data/spec/models/network_minimal_company_spec.rb +36 -0
- data/spec/models/network_minimal_spec.rb +42 -0
- data/spec/models/network_spec.rb +48 -0
- data/spec/models/parse_bulk_user_agent_strings_request_spec.rb +36 -0
- data/spec/models/parse_user_agent_string_request_spec.rb +36 -0
- data/spec/models/security_api_response_spec.rb +84 -0
- data/spec/models/security_apixml_response_array_spec.rb +84 -0
- data/spec/models/security_apixml_response_spec.rb +84 -0
- data/spec/models/security_spec.rb +96 -0
- data/spec/models/time_conversion_response_spec.rb +54 -0
- data/spec/models/time_conversion_xml_response_spec.rb +54 -0
- data/spec/models/time_zone_detailed_response_spec.rb +60 -0
- data/spec/models/time_zone_detailed_xml_response_spec.rb +60 -0
- data/spec/models/time_zone_dst_end_spec.rb +66 -0
- data/spec/models/time_zone_dst_start_spec.rb +66 -0
- data/spec/models/time_zone_spec.rb +90 -0
- data/spec/models/timezone_airport_spec.rb +102 -0
- data/spec/models/timezone_detail_dst_end_spec.rb +66 -0
- data/spec/models/timezone_detail_dst_start_spec.rb +66 -0
- data/spec/models/timezone_detail_spec.rb +150 -0
- data/spec/models/timezone_location_spec.rb +126 -0
- data/spec/models/timezone_locode_spec.rb +78 -0
- data/spec/models/user_agent_data_device_spec.rb +54 -0
- data/spec/models/user_agent_data_engine_spec.rb +54 -0
- data/spec/models/user_agent_data_operating_system_spec.rb +60 -0
- data/spec/models/user_agent_data_spec.rb +78 -0
- data/spec/models/user_agent_xml_data_array_spec.rb +78 -0
- data/spec/models/user_agent_xml_data_spec.rb +78 -0
- data/spec/spec_helper.rb +111 -0
- metadata +373 -0
@@ -0,0 +1,400 @@
|
|
1
|
+
=begin
|
2
|
+
#IPGeolocation.io - IP intelligence products
|
3
|
+
|
4
|
+
#Ipgeolocation provides a set of APIs to make ip based decisions.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 2.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
Generator version: 7.13.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'date'
|
14
|
+
require 'time'
|
15
|
+
|
16
|
+
module IpgeolocationSdk
|
17
|
+
class Location
|
18
|
+
attr_accessor :continent_code
|
19
|
+
|
20
|
+
attr_accessor :continent_name
|
21
|
+
|
22
|
+
attr_accessor :country_code2
|
23
|
+
|
24
|
+
attr_accessor :country_code3
|
25
|
+
|
26
|
+
attr_accessor :country_name
|
27
|
+
|
28
|
+
attr_accessor :country_name_official
|
29
|
+
|
30
|
+
attr_accessor :country_capital
|
31
|
+
|
32
|
+
attr_accessor :state_prov
|
33
|
+
|
34
|
+
attr_accessor :state_code
|
35
|
+
|
36
|
+
attr_accessor :district
|
37
|
+
|
38
|
+
attr_accessor :city
|
39
|
+
|
40
|
+
attr_accessor :zipcode
|
41
|
+
|
42
|
+
attr_accessor :latitude
|
43
|
+
|
44
|
+
attr_accessor :longitude
|
45
|
+
|
46
|
+
attr_accessor :is_eu
|
47
|
+
|
48
|
+
attr_accessor :country_flag
|
49
|
+
|
50
|
+
attr_accessor :geoname_id
|
51
|
+
|
52
|
+
attr_accessor :country_emoji
|
53
|
+
|
54
|
+
attr_accessor :accuracy_radius
|
55
|
+
|
56
|
+
attr_accessor :locality
|
57
|
+
|
58
|
+
attr_accessor :dma_code
|
59
|
+
|
60
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
61
|
+
def self.attribute_map
|
62
|
+
{
|
63
|
+
:'continent_code' => :'continent_code',
|
64
|
+
:'continent_name' => :'continent_name',
|
65
|
+
:'country_code2' => :'country_code2',
|
66
|
+
:'country_code3' => :'country_code3',
|
67
|
+
:'country_name' => :'country_name',
|
68
|
+
:'country_name_official' => :'country_name_official',
|
69
|
+
:'country_capital' => :'country_capital',
|
70
|
+
:'state_prov' => :'state_prov',
|
71
|
+
:'state_code' => :'state_code',
|
72
|
+
:'district' => :'district',
|
73
|
+
:'city' => :'city',
|
74
|
+
:'zipcode' => :'zipcode',
|
75
|
+
:'latitude' => :'latitude',
|
76
|
+
:'longitude' => :'longitude',
|
77
|
+
:'is_eu' => :'is_eu',
|
78
|
+
:'country_flag' => :'country_flag',
|
79
|
+
:'geoname_id' => :'geoname_id',
|
80
|
+
:'country_emoji' => :'country_emoji',
|
81
|
+
:'accuracy_radius' => :'accuracy_radius',
|
82
|
+
:'locality' => :'locality',
|
83
|
+
:'dma_code' => :'dma_code'
|
84
|
+
}
|
85
|
+
end
|
86
|
+
|
87
|
+
# Returns attribute mapping this model knows about
|
88
|
+
def self.acceptable_attribute_map
|
89
|
+
attribute_map
|
90
|
+
end
|
91
|
+
|
92
|
+
# Returns all the JSON keys this model knows about
|
93
|
+
def self.acceptable_attributes
|
94
|
+
acceptable_attribute_map.values
|
95
|
+
end
|
96
|
+
|
97
|
+
# Attribute type mapping.
|
98
|
+
def self.openapi_types
|
99
|
+
{
|
100
|
+
:'continent_code' => :'String',
|
101
|
+
:'continent_name' => :'String',
|
102
|
+
:'country_code2' => :'String',
|
103
|
+
:'country_code3' => :'String',
|
104
|
+
:'country_name' => :'String',
|
105
|
+
:'country_name_official' => :'String',
|
106
|
+
:'country_capital' => :'String',
|
107
|
+
:'state_prov' => :'String',
|
108
|
+
:'state_code' => :'String',
|
109
|
+
:'district' => :'String',
|
110
|
+
:'city' => :'String',
|
111
|
+
:'zipcode' => :'String',
|
112
|
+
:'latitude' => :'String',
|
113
|
+
:'longitude' => :'String',
|
114
|
+
:'is_eu' => :'Boolean',
|
115
|
+
:'country_flag' => :'String',
|
116
|
+
:'geoname_id' => :'String',
|
117
|
+
:'country_emoji' => :'String',
|
118
|
+
:'accuracy_radius' => :'String',
|
119
|
+
:'locality' => :'String',
|
120
|
+
:'dma_code' => :'String'
|
121
|
+
}
|
122
|
+
end
|
123
|
+
|
124
|
+
# List of attributes with nullable: true
|
125
|
+
def self.openapi_nullable
|
126
|
+
Set.new([
|
127
|
+
])
|
128
|
+
end
|
129
|
+
|
130
|
+
# Initializes the object
|
131
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
132
|
+
def initialize(attributes = {})
|
133
|
+
if (!attributes.is_a?(Hash))
|
134
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `IpgeolocationSdk::Location` initialize method"
|
135
|
+
end
|
136
|
+
|
137
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
138
|
+
acceptable_attribute_map = self.class.acceptable_attribute_map
|
139
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
140
|
+
if (!acceptable_attribute_map.key?(k.to_sym))
|
141
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `IpgeolocationSdk::Location`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
|
142
|
+
end
|
143
|
+
h[k.to_sym] = v
|
144
|
+
}
|
145
|
+
|
146
|
+
if attributes.key?(:'continent_code')
|
147
|
+
self.continent_code = attributes[:'continent_code']
|
148
|
+
end
|
149
|
+
|
150
|
+
if attributes.key?(:'continent_name')
|
151
|
+
self.continent_name = attributes[:'continent_name']
|
152
|
+
end
|
153
|
+
|
154
|
+
if attributes.key?(:'country_code2')
|
155
|
+
self.country_code2 = attributes[:'country_code2']
|
156
|
+
end
|
157
|
+
|
158
|
+
if attributes.key?(:'country_code3')
|
159
|
+
self.country_code3 = attributes[:'country_code3']
|
160
|
+
end
|
161
|
+
|
162
|
+
if attributes.key?(:'country_name')
|
163
|
+
self.country_name = attributes[:'country_name']
|
164
|
+
end
|
165
|
+
|
166
|
+
if attributes.key?(:'country_name_official')
|
167
|
+
self.country_name_official = attributes[:'country_name_official']
|
168
|
+
end
|
169
|
+
|
170
|
+
if attributes.key?(:'country_capital')
|
171
|
+
self.country_capital = attributes[:'country_capital']
|
172
|
+
end
|
173
|
+
|
174
|
+
if attributes.key?(:'state_prov')
|
175
|
+
self.state_prov = attributes[:'state_prov']
|
176
|
+
end
|
177
|
+
|
178
|
+
if attributes.key?(:'state_code')
|
179
|
+
self.state_code = attributes[:'state_code']
|
180
|
+
end
|
181
|
+
|
182
|
+
if attributes.key?(:'district')
|
183
|
+
self.district = attributes[:'district']
|
184
|
+
end
|
185
|
+
|
186
|
+
if attributes.key?(:'city')
|
187
|
+
self.city = attributes[:'city']
|
188
|
+
end
|
189
|
+
|
190
|
+
if attributes.key?(:'zipcode')
|
191
|
+
self.zipcode = attributes[:'zipcode']
|
192
|
+
end
|
193
|
+
|
194
|
+
if attributes.key?(:'latitude')
|
195
|
+
self.latitude = attributes[:'latitude']
|
196
|
+
end
|
197
|
+
|
198
|
+
if attributes.key?(:'longitude')
|
199
|
+
self.longitude = attributes[:'longitude']
|
200
|
+
end
|
201
|
+
|
202
|
+
if attributes.key?(:'is_eu')
|
203
|
+
self.is_eu = attributes[:'is_eu']
|
204
|
+
end
|
205
|
+
|
206
|
+
if attributes.key?(:'country_flag')
|
207
|
+
self.country_flag = attributes[:'country_flag']
|
208
|
+
end
|
209
|
+
|
210
|
+
if attributes.key?(:'geoname_id')
|
211
|
+
self.geoname_id = attributes[:'geoname_id']
|
212
|
+
end
|
213
|
+
|
214
|
+
if attributes.key?(:'country_emoji')
|
215
|
+
self.country_emoji = attributes[:'country_emoji']
|
216
|
+
end
|
217
|
+
|
218
|
+
if attributes.key?(:'accuracy_radius')
|
219
|
+
self.accuracy_radius = attributes[:'accuracy_radius']
|
220
|
+
end
|
221
|
+
|
222
|
+
if attributes.key?(:'locality')
|
223
|
+
self.locality = attributes[:'locality']
|
224
|
+
end
|
225
|
+
|
226
|
+
if attributes.key?(:'dma_code')
|
227
|
+
self.dma_code = attributes[:'dma_code']
|
228
|
+
end
|
229
|
+
end
|
230
|
+
|
231
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
232
|
+
# @return Array for valid properties with the reasons
|
233
|
+
def list_invalid_properties
|
234
|
+
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
235
|
+
invalid_properties = Array.new
|
236
|
+
invalid_properties
|
237
|
+
end
|
238
|
+
|
239
|
+
# Check to see if the all the properties in the model are valid
|
240
|
+
# @return true if the model is valid
|
241
|
+
def valid?
|
242
|
+
warn '[DEPRECATED] the `valid?` method is obsolete'
|
243
|
+
true
|
244
|
+
end
|
245
|
+
|
246
|
+
# Checks equality by comparing each attribute.
|
247
|
+
# @param [Object] Object to be compared
|
248
|
+
def ==(o)
|
249
|
+
return true if self.equal?(o)
|
250
|
+
self.class == o.class &&
|
251
|
+
continent_code == o.continent_code &&
|
252
|
+
continent_name == o.continent_name &&
|
253
|
+
country_code2 == o.country_code2 &&
|
254
|
+
country_code3 == o.country_code3 &&
|
255
|
+
country_name == o.country_name &&
|
256
|
+
country_name_official == o.country_name_official &&
|
257
|
+
country_capital == o.country_capital &&
|
258
|
+
state_prov == o.state_prov &&
|
259
|
+
state_code == o.state_code &&
|
260
|
+
district == o.district &&
|
261
|
+
city == o.city &&
|
262
|
+
zipcode == o.zipcode &&
|
263
|
+
latitude == o.latitude &&
|
264
|
+
longitude == o.longitude &&
|
265
|
+
is_eu == o.is_eu &&
|
266
|
+
country_flag == o.country_flag &&
|
267
|
+
geoname_id == o.geoname_id &&
|
268
|
+
country_emoji == o.country_emoji &&
|
269
|
+
accuracy_radius == o.accuracy_radius &&
|
270
|
+
locality == o.locality &&
|
271
|
+
dma_code == o.dma_code
|
272
|
+
end
|
273
|
+
|
274
|
+
# @see the `==` method
|
275
|
+
# @param [Object] Object to be compared
|
276
|
+
def eql?(o)
|
277
|
+
self == o
|
278
|
+
end
|
279
|
+
|
280
|
+
# Calculates hash code according to all attributes.
|
281
|
+
# @return [Integer] Hash code
|
282
|
+
def hash
|
283
|
+
[continent_code, continent_name, country_code2, country_code3, country_name, country_name_official, country_capital, state_prov, state_code, district, city, zipcode, latitude, longitude, is_eu, country_flag, geoname_id, country_emoji, accuracy_radius, locality, dma_code].hash
|
284
|
+
end
|
285
|
+
|
286
|
+
# Builds the object from hash
|
287
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
288
|
+
# @return [Object] Returns the model itself
|
289
|
+
def self.build_from_hash(attributes)
|
290
|
+
return nil unless attributes.is_a?(Hash)
|
291
|
+
attributes = attributes.transform_keys(&:to_sym)
|
292
|
+
transformed_hash = {}
|
293
|
+
openapi_types.each_pair do |key, type|
|
294
|
+
if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
|
295
|
+
transformed_hash["#{key}"] = nil
|
296
|
+
elsif type =~ /\AArray<(.*)>/i
|
297
|
+
# check to ensure the input is an array given that the attribute
|
298
|
+
# is documented as an array but the input is not
|
299
|
+
if attributes[attribute_map[key]].is_a?(Array)
|
300
|
+
transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
|
301
|
+
end
|
302
|
+
elsif !attributes[attribute_map[key]].nil?
|
303
|
+
transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
|
304
|
+
end
|
305
|
+
end
|
306
|
+
new(transformed_hash)
|
307
|
+
end
|
308
|
+
|
309
|
+
# Deserializes the data based on type
|
310
|
+
# @param string type Data type
|
311
|
+
# @param string value Value to be deserialized
|
312
|
+
# @return [Object] Deserialized data
|
313
|
+
def self._deserialize(type, value)
|
314
|
+
case type.to_sym
|
315
|
+
when :Time
|
316
|
+
Time.parse(value)
|
317
|
+
when :Date
|
318
|
+
Date.parse(value)
|
319
|
+
when :String
|
320
|
+
value.to_s
|
321
|
+
when :Integer
|
322
|
+
value.to_i
|
323
|
+
when :Float
|
324
|
+
value.to_f
|
325
|
+
when :Boolean
|
326
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
327
|
+
true
|
328
|
+
else
|
329
|
+
false
|
330
|
+
end
|
331
|
+
when :Object
|
332
|
+
# generic object (usually a Hash), return directly
|
333
|
+
value
|
334
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
335
|
+
inner_type = Regexp.last_match[:inner_type]
|
336
|
+
value.map { |v| _deserialize(inner_type, v) }
|
337
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
338
|
+
k_type = Regexp.last_match[:k_type]
|
339
|
+
v_type = Regexp.last_match[:v_type]
|
340
|
+
{}.tap do |hash|
|
341
|
+
value.each do |k, v|
|
342
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
343
|
+
end
|
344
|
+
end
|
345
|
+
else # model
|
346
|
+
# models (e.g. Pet) or oneOf
|
347
|
+
klass = IpgeolocationSdk.const_get(type)
|
348
|
+
klass.respond_to?(:openapi_any_of) || klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
349
|
+
end
|
350
|
+
end
|
351
|
+
|
352
|
+
# Returns the string representation of the object
|
353
|
+
# @return [String] String presentation of the object
|
354
|
+
def to_s
|
355
|
+
to_hash.to_s
|
356
|
+
end
|
357
|
+
|
358
|
+
# to_body is an alias to to_hash (backward compatibility)
|
359
|
+
# @return [Hash] Returns the object in the form of hash
|
360
|
+
def to_body
|
361
|
+
to_hash
|
362
|
+
end
|
363
|
+
|
364
|
+
# Returns the object in the form of hash
|
365
|
+
# @return [Hash] Returns the object in the form of hash
|
366
|
+
def to_hash
|
367
|
+
hash = {}
|
368
|
+
self.class.attribute_map.each_pair do |attr, param|
|
369
|
+
value = self.send(attr)
|
370
|
+
if value.nil?
|
371
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
372
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
373
|
+
end
|
374
|
+
|
375
|
+
hash[param] = _to_hash(value)
|
376
|
+
end
|
377
|
+
hash
|
378
|
+
end
|
379
|
+
|
380
|
+
# Outputs non-array value in the form of hash
|
381
|
+
# For object, use to_hash. Otherwise, just return the value
|
382
|
+
# @param [Object] value Any valid value
|
383
|
+
# @return [Hash] Returns the value in the form of hash
|
384
|
+
def _to_hash(value)
|
385
|
+
if value.is_a?(Array)
|
386
|
+
value.compact.map { |v| _to_hash(v) }
|
387
|
+
elsif value.is_a?(Hash)
|
388
|
+
{}.tap do |hash|
|
389
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
390
|
+
end
|
391
|
+
elsif value.respond_to? :to_hash
|
392
|
+
value.to_hash
|
393
|
+
else
|
394
|
+
value
|
395
|
+
end
|
396
|
+
end
|
397
|
+
|
398
|
+
end
|
399
|
+
|
400
|
+
end
|