cloudmersive-validate-api-client 2.0.6 → 2.1.1
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 +4 -4
- data/README.md +17 -4
- data/docs/AddressApi.md +220 -0
- data/docs/CountryDetails.md +5 -0
- data/docs/DomainApi.md +55 -0
- data/docs/DomainQualityResponse.md +8 -0
- data/docs/GeolocateStreetAddressResponse.md +13 -0
- data/docs/IPAddressApi.md +55 -0
- data/docs/ReverseGeocodeAddressRequest.md +9 -0
- data/docs/ReverseGeocodeAddressResponse.md +14 -0
- data/docs/TextInputApi.md +118 -0
- data/docs/ValidateCountryResponse.md +5 -0
- data/docs/XssProtectionResult.md +11 -0
- data/lib/cloudmersive-validate-api-client.rb +6 -0
- data/lib/cloudmersive-validate-api-client/api/address_api.rb +216 -0
- data/lib/cloudmersive-validate-api-client/api/domain_api.rb +54 -0
- data/lib/cloudmersive-validate-api-client/api/ip_address_api.rb +54 -0
- data/lib/cloudmersive-validate-api-client/api/text_input_api.rb +131 -0
- data/lib/cloudmersive-validate-api-client/models/country_details.rb +54 -4
- data/lib/cloudmersive-validate-api-client/models/domain_quality_response.rb +186 -0
- data/lib/cloudmersive-validate-api-client/models/geolocate_street_address_response.rb +236 -0
- data/lib/cloudmersive-validate-api-client/models/reverse_geocode_address_request.rb +196 -0
- data/lib/cloudmersive-validate-api-client/models/reverse_geocode_address_response.rb +246 -0
- data/lib/cloudmersive-validate-api-client/models/validate_country_response.rb +54 -4
- data/lib/cloudmersive-validate-api-client/models/xss_protection_result.rb +216 -0
- data/lib/cloudmersive-validate-api-client/version.rb +1 -1
- data/spec/api/address_api_spec.rb +48 -0
- data/spec/api/domain_api_spec.rb +12 -0
- data/spec/api/ip_address_api_spec.rb +12 -0
- data/spec/api/text_input_api_spec.rb +59 -0
- data/spec/models/country_details_spec.rb +30 -0
- data/spec/models/domain_quality_response_spec.rb +41 -0
- data/spec/models/geolocate_street_address_response_spec.rb +71 -0
- data/spec/models/reverse_geocode_address_request_spec.rb +47 -0
- data/spec/models/reverse_geocode_address_response_spec.rb +77 -0
- data/spec/models/validate_country_response_spec.rb +30 -0
- data/spec/models/xss_protection_result_spec.rb +59 -0
- metadata +20 -2
|
@@ -127,6 +127,60 @@ module CloudmersiveValidateApiClient
|
|
|
127
127
|
end
|
|
128
128
|
return data, status_code, headers
|
|
129
129
|
end
|
|
130
|
+
# Validate a domain name's quality score
|
|
131
|
+
# Check the quality of a domain name. Supports over 9 million domain names. Higher quality scores indicate more trust and authority in the domain name, with values ranging from 0.0 (low quality) to 10.0 (maximum quality).
|
|
132
|
+
# @param domain Domain name to check, for example \"cloudmersive.com\".
|
|
133
|
+
# @param [Hash] opts the optional parameters
|
|
134
|
+
# @return [DomainQualityResponse]
|
|
135
|
+
def domain_quality_score(domain, opts = {})
|
|
136
|
+
data, _status_code, _headers = domain_quality_score_with_http_info(domain, opts)
|
|
137
|
+
data
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
# Validate a domain name's quality score
|
|
141
|
+
# Check the quality of a domain name. Supports over 9 million domain names. Higher quality scores indicate more trust and authority in the domain name, with values ranging from 0.0 (low quality) to 10.0 (maximum quality).
|
|
142
|
+
# @param domain Domain name to check, for example \"cloudmersive.com\".
|
|
143
|
+
# @param [Hash] opts the optional parameters
|
|
144
|
+
# @return [Array<(DomainQualityResponse, Fixnum, Hash)>] DomainQualityResponse data, response status code and response headers
|
|
145
|
+
def domain_quality_score_with_http_info(domain, opts = {})
|
|
146
|
+
if @api_client.config.debugging
|
|
147
|
+
@api_client.config.logger.debug 'Calling API: DomainApi.domain_quality_score ...'
|
|
148
|
+
end
|
|
149
|
+
# verify the required parameter 'domain' is set
|
|
150
|
+
if @api_client.config.client_side_validation && domain.nil?
|
|
151
|
+
fail ArgumentError, "Missing the required parameter 'domain' when calling DomainApi.domain_quality_score"
|
|
152
|
+
end
|
|
153
|
+
# resource path
|
|
154
|
+
local_var_path = '/validate/domain/quality-score'
|
|
155
|
+
|
|
156
|
+
# query parameters
|
|
157
|
+
query_params = {}
|
|
158
|
+
|
|
159
|
+
# header parameters
|
|
160
|
+
header_params = {}
|
|
161
|
+
# HTTP header 'Accept' (if needed)
|
|
162
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json', 'text/json', 'application/xml', 'text/xml'])
|
|
163
|
+
# HTTP header 'Content-Type'
|
|
164
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['text/javascript', 'application/json', 'text/json'])
|
|
165
|
+
|
|
166
|
+
# form parameters
|
|
167
|
+
form_params = {}
|
|
168
|
+
|
|
169
|
+
# http body (model)
|
|
170
|
+
post_body = @api_client.object_to_http_body(domain)
|
|
171
|
+
auth_names = ['Apikey']
|
|
172
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
|
173
|
+
:header_params => header_params,
|
|
174
|
+
:query_params => query_params,
|
|
175
|
+
:form_params => form_params,
|
|
176
|
+
:body => post_body,
|
|
177
|
+
:auth_names => auth_names,
|
|
178
|
+
:return_type => 'DomainQualityResponse')
|
|
179
|
+
if @api_client.config.debugging
|
|
180
|
+
@api_client.config.logger.debug "API called: DomainApi#domain_quality_score\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
181
|
+
end
|
|
182
|
+
return data, status_code, headers
|
|
183
|
+
end
|
|
130
184
|
# Validate a URL fully
|
|
131
185
|
# Validate whether a URL is syntactically valid (does not check endpoint for validity), whether it exists, and whether the endpoint is up and passes virus scan checks. Accepts various types of input and produces a well-formed URL as output.
|
|
132
186
|
# @param request Input URL request
|
|
@@ -19,6 +19,60 @@ module CloudmersiveValidateApiClient
|
|
|
19
19
|
def initialize(api_client = ApiClient.default)
|
|
20
20
|
@api_client = api_client
|
|
21
21
|
end
|
|
22
|
+
# Geolocate an IP address to a street address
|
|
23
|
+
# Identify an IP address's street address. Useful for security and UX applications.
|
|
24
|
+
# @param value IP address to geolocate, e.g. \"55.55.55.55\". The input is a string so be sure to enclose it in double-quotes.
|
|
25
|
+
# @param [Hash] opts the optional parameters
|
|
26
|
+
# @return [GeolocateStreetAddressResponse]
|
|
27
|
+
def i_p_address_geolocate_street_address(value, opts = {})
|
|
28
|
+
data, _status_code, _headers = i_p_address_geolocate_street_address_with_http_info(value, opts)
|
|
29
|
+
data
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
# Geolocate an IP address to a street address
|
|
33
|
+
# Identify an IP address's street address. Useful for security and UX applications.
|
|
34
|
+
# @param value IP address to geolocate, e.g. \"55.55.55.55\". The input is a string so be sure to enclose it in double-quotes.
|
|
35
|
+
# @param [Hash] opts the optional parameters
|
|
36
|
+
# @return [Array<(GeolocateStreetAddressResponse, Fixnum, Hash)>] GeolocateStreetAddressResponse data, response status code and response headers
|
|
37
|
+
def i_p_address_geolocate_street_address_with_http_info(value, opts = {})
|
|
38
|
+
if @api_client.config.debugging
|
|
39
|
+
@api_client.config.logger.debug 'Calling API: IPAddressApi.i_p_address_geolocate_street_address ...'
|
|
40
|
+
end
|
|
41
|
+
# verify the required parameter 'value' is set
|
|
42
|
+
if @api_client.config.client_side_validation && value.nil?
|
|
43
|
+
fail ArgumentError, "Missing the required parameter 'value' when calling IPAddressApi.i_p_address_geolocate_street_address"
|
|
44
|
+
end
|
|
45
|
+
# resource path
|
|
46
|
+
local_var_path = '/validate/ip/geolocate/street-address'
|
|
47
|
+
|
|
48
|
+
# query parameters
|
|
49
|
+
query_params = {}
|
|
50
|
+
|
|
51
|
+
# header parameters
|
|
52
|
+
header_params = {}
|
|
53
|
+
# HTTP header 'Accept' (if needed)
|
|
54
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json', 'text/json', 'application/xml', 'text/xml'])
|
|
55
|
+
# HTTP header 'Content-Type'
|
|
56
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['text/javascript', 'application/json', 'text/json'])
|
|
57
|
+
|
|
58
|
+
# form parameters
|
|
59
|
+
form_params = {}
|
|
60
|
+
|
|
61
|
+
# http body (model)
|
|
62
|
+
post_body = @api_client.object_to_http_body(value)
|
|
63
|
+
auth_names = ['Apikey']
|
|
64
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
|
65
|
+
:header_params => header_params,
|
|
66
|
+
:query_params => query_params,
|
|
67
|
+
:form_params => form_params,
|
|
68
|
+
:body => post_body,
|
|
69
|
+
:auth_names => auth_names,
|
|
70
|
+
:return_type => 'GeolocateStreetAddressResponse')
|
|
71
|
+
if @api_client.config.debugging
|
|
72
|
+
@api_client.config.logger.debug "API called: IPAddressApi#i_p_address_geolocate_street_address\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
73
|
+
end
|
|
74
|
+
return data, status_code, headers
|
|
75
|
+
end
|
|
22
76
|
# Check if IP address is a known threat
|
|
23
77
|
# Check if the input IP address is a known threat IP address. Checks against known bad IPs, botnets, compromised servers, and other lists of threats.
|
|
24
78
|
# @param value IP address to check, e.g. \"55.55.55.55\". The input is a string so be sure to enclose it in double-quotes.
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#validateapi
|
|
3
|
+
|
|
4
|
+
#The validation APIs help you validate data. Check if an E-mail address is real. Check if a domain is real. Check up on an IP address, and even where it is located. All this and much more is available in the validation API.
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: v1
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.14
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'uri'
|
|
14
|
+
|
|
15
|
+
module CloudmersiveValidateApiClient
|
|
16
|
+
class TextInputApi
|
|
17
|
+
attr_accessor :api_client
|
|
18
|
+
|
|
19
|
+
def initialize(api_client = ApiClient.default)
|
|
20
|
+
@api_client = api_client
|
|
21
|
+
end
|
|
22
|
+
# Check text input for Cross-Site-Scripting (XSS) attacks
|
|
23
|
+
# Detects XSS (Cross-Site-Scripting) attacks from text input.
|
|
24
|
+
# @param value User-facing text input.
|
|
25
|
+
# @param [Hash] opts the optional parameters
|
|
26
|
+
# @return [XssProtectionResult]
|
|
27
|
+
def text_input_check_xss(value, opts = {})
|
|
28
|
+
data, _status_code, _headers = text_input_check_xss_with_http_info(value, opts)
|
|
29
|
+
data
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
# Check text input for Cross-Site-Scripting (XSS) attacks
|
|
33
|
+
# Detects XSS (Cross-Site-Scripting) attacks from text input.
|
|
34
|
+
# @param value User-facing text input.
|
|
35
|
+
# @param [Hash] opts the optional parameters
|
|
36
|
+
# @return [Array<(XssProtectionResult, Fixnum, Hash)>] XssProtectionResult data, response status code and response headers
|
|
37
|
+
def text_input_check_xss_with_http_info(value, opts = {})
|
|
38
|
+
if @api_client.config.debugging
|
|
39
|
+
@api_client.config.logger.debug 'Calling API: TextInputApi.text_input_check_xss ...'
|
|
40
|
+
end
|
|
41
|
+
# verify the required parameter 'value' is set
|
|
42
|
+
if @api_client.config.client_side_validation && value.nil?
|
|
43
|
+
fail ArgumentError, "Missing the required parameter 'value' when calling TextInputApi.text_input_check_xss"
|
|
44
|
+
end
|
|
45
|
+
# resource path
|
|
46
|
+
local_var_path = '/validate/text-input/check/xss'
|
|
47
|
+
|
|
48
|
+
# query parameters
|
|
49
|
+
query_params = {}
|
|
50
|
+
|
|
51
|
+
# header parameters
|
|
52
|
+
header_params = {}
|
|
53
|
+
# HTTP header 'Accept' (if needed)
|
|
54
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json', 'text/json', 'application/xml', 'text/xml'])
|
|
55
|
+
# HTTP header 'Content-Type'
|
|
56
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['text/javascript', 'application/json', 'text/json'])
|
|
57
|
+
|
|
58
|
+
# form parameters
|
|
59
|
+
form_params = {}
|
|
60
|
+
|
|
61
|
+
# http body (model)
|
|
62
|
+
post_body = @api_client.object_to_http_body(value)
|
|
63
|
+
auth_names = ['Apikey']
|
|
64
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
|
65
|
+
:header_params => header_params,
|
|
66
|
+
:query_params => query_params,
|
|
67
|
+
:form_params => form_params,
|
|
68
|
+
:body => post_body,
|
|
69
|
+
:auth_names => auth_names,
|
|
70
|
+
:return_type => 'XssProtectionResult')
|
|
71
|
+
if @api_client.config.debugging
|
|
72
|
+
@api_client.config.logger.debug "API called: TextInputApi#text_input_check_xss\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
73
|
+
end
|
|
74
|
+
return data, status_code, headers
|
|
75
|
+
end
|
|
76
|
+
# Protect text input from Cross-Site-Scripting (XSS) attacks through normalization
|
|
77
|
+
# Detects and removes XSS (Cross-Site-Scripting) attacks from text input through normalization. Returns the normalized result, as well as information on whether the original input contained an XSS risk.
|
|
78
|
+
# @param value User-facing text input.
|
|
79
|
+
# @param [Hash] opts the optional parameters
|
|
80
|
+
# @return [XssProtectionResult]
|
|
81
|
+
def text_input_protect_xss(value, opts = {})
|
|
82
|
+
data, _status_code, _headers = text_input_protect_xss_with_http_info(value, opts)
|
|
83
|
+
data
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
# Protect text input from Cross-Site-Scripting (XSS) attacks through normalization
|
|
87
|
+
# Detects and removes XSS (Cross-Site-Scripting) attacks from text input through normalization. Returns the normalized result, as well as information on whether the original input contained an XSS risk.
|
|
88
|
+
# @param value User-facing text input.
|
|
89
|
+
# @param [Hash] opts the optional parameters
|
|
90
|
+
# @return [Array<(XssProtectionResult, Fixnum, Hash)>] XssProtectionResult data, response status code and response headers
|
|
91
|
+
def text_input_protect_xss_with_http_info(value, opts = {})
|
|
92
|
+
if @api_client.config.debugging
|
|
93
|
+
@api_client.config.logger.debug 'Calling API: TextInputApi.text_input_protect_xss ...'
|
|
94
|
+
end
|
|
95
|
+
# verify the required parameter 'value' is set
|
|
96
|
+
if @api_client.config.client_side_validation && value.nil?
|
|
97
|
+
fail ArgumentError, "Missing the required parameter 'value' when calling TextInputApi.text_input_protect_xss"
|
|
98
|
+
end
|
|
99
|
+
# resource path
|
|
100
|
+
local_var_path = '/validate/text-input/protect/xss'
|
|
101
|
+
|
|
102
|
+
# query parameters
|
|
103
|
+
query_params = {}
|
|
104
|
+
|
|
105
|
+
# header parameters
|
|
106
|
+
header_params = {}
|
|
107
|
+
# HTTP header 'Accept' (if needed)
|
|
108
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json', 'text/json', 'application/xml', 'text/xml'])
|
|
109
|
+
# HTTP header 'Content-Type'
|
|
110
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['text/javascript', 'application/json', 'text/json'])
|
|
111
|
+
|
|
112
|
+
# form parameters
|
|
113
|
+
form_params = {}
|
|
114
|
+
|
|
115
|
+
# http body (model)
|
|
116
|
+
post_body = @api_client.object_to_http_body(value)
|
|
117
|
+
auth_names = ['Apikey']
|
|
118
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path,
|
|
119
|
+
:header_params => header_params,
|
|
120
|
+
:query_params => query_params,
|
|
121
|
+
:form_params => form_params,
|
|
122
|
+
:body => post_body,
|
|
123
|
+
:auth_names => auth_names,
|
|
124
|
+
:return_type => 'XssProtectionResult')
|
|
125
|
+
if @api_client.config.debugging
|
|
126
|
+
@api_client.config.logger.debug "API called: TextInputApi#text_input_protect_xss\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
127
|
+
end
|
|
128
|
+
return data, status_code, headers
|
|
129
|
+
end
|
|
130
|
+
end
|
|
131
|
+
end
|
|
@@ -27,13 +27,33 @@ module CloudmersiveValidateApiClient
|
|
|
27
27
|
# True if this country is currently a member of the European Union (EU), false otherwise
|
|
28
28
|
attr_accessor :is_european_union_member
|
|
29
29
|
|
|
30
|
+
# ISO 4217 currency three-letter code associated with the country
|
|
31
|
+
attr_accessor :iso_currency_code
|
|
32
|
+
|
|
33
|
+
# Symbol associated with the currency
|
|
34
|
+
attr_accessor :currency_symbol
|
|
35
|
+
|
|
36
|
+
# Full name of the currency
|
|
37
|
+
attr_accessor :currency_english_name
|
|
38
|
+
|
|
39
|
+
# Region (continent) in which the country is located; possible values are None, Europe, Americas, Asia, Africa, Oceania
|
|
40
|
+
attr_accessor :region
|
|
41
|
+
|
|
42
|
+
# Subregion in which the country is located; possible values are None, NorthernEurope, WesternEurope, SouthernEurope, EasternEurope, CentralAmerica, NorthernAmerica, SouthAmerica, EasternAfrica, MiddleAfrica, NorthernAfrica , SouthernAfrica , WesternAfrica , CentralAsia , EasternAsia , SouthernAsia , SouthEasternAsia , WesternAsia , Southern , Middle , AustraliaandNewZealand , Melanesia , Polynesia , Micronesia , Caribbean,
|
|
43
|
+
attr_accessor :subregion
|
|
44
|
+
|
|
30
45
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
31
46
|
def self.attribute_map
|
|
32
47
|
{
|
|
33
48
|
:'country_name' => :'CountryName',
|
|
34
49
|
:'three_letter_code' => :'ThreeLetterCode',
|
|
35
50
|
:'iso_two_letter_code' => :'ISOTwoLetterCode',
|
|
36
|
-
:'is_european_union_member' => :'IsEuropeanUnionMember'
|
|
51
|
+
:'is_european_union_member' => :'IsEuropeanUnionMember',
|
|
52
|
+
:'iso_currency_code' => :'ISOCurrencyCode',
|
|
53
|
+
:'currency_symbol' => :'CurrencySymbol',
|
|
54
|
+
:'currency_english_name' => :'CurrencyEnglishName',
|
|
55
|
+
:'region' => :'Region',
|
|
56
|
+
:'subregion' => :'Subregion'
|
|
37
57
|
}
|
|
38
58
|
end
|
|
39
59
|
|
|
@@ -43,7 +63,12 @@ module CloudmersiveValidateApiClient
|
|
|
43
63
|
:'country_name' => :'String',
|
|
44
64
|
:'three_letter_code' => :'String',
|
|
45
65
|
:'iso_two_letter_code' => :'String',
|
|
46
|
-
:'is_european_union_member' => :'BOOLEAN'
|
|
66
|
+
:'is_european_union_member' => :'BOOLEAN',
|
|
67
|
+
:'iso_currency_code' => :'String',
|
|
68
|
+
:'currency_symbol' => :'String',
|
|
69
|
+
:'currency_english_name' => :'String',
|
|
70
|
+
:'region' => :'String',
|
|
71
|
+
:'subregion' => :'String'
|
|
47
72
|
}
|
|
48
73
|
end
|
|
49
74
|
|
|
@@ -70,6 +95,26 @@ module CloudmersiveValidateApiClient
|
|
|
70
95
|
if attributes.has_key?(:'IsEuropeanUnionMember')
|
|
71
96
|
self.is_european_union_member = attributes[:'IsEuropeanUnionMember']
|
|
72
97
|
end
|
|
98
|
+
|
|
99
|
+
if attributes.has_key?(:'ISOCurrencyCode')
|
|
100
|
+
self.iso_currency_code = attributes[:'ISOCurrencyCode']
|
|
101
|
+
end
|
|
102
|
+
|
|
103
|
+
if attributes.has_key?(:'CurrencySymbol')
|
|
104
|
+
self.currency_symbol = attributes[:'CurrencySymbol']
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
if attributes.has_key?(:'CurrencyEnglishName')
|
|
108
|
+
self.currency_english_name = attributes[:'CurrencyEnglishName']
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
if attributes.has_key?(:'Region')
|
|
112
|
+
self.region = attributes[:'Region']
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
if attributes.has_key?(:'Subregion')
|
|
116
|
+
self.subregion = attributes[:'Subregion']
|
|
117
|
+
end
|
|
73
118
|
end
|
|
74
119
|
|
|
75
120
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -93,7 +138,12 @@ module CloudmersiveValidateApiClient
|
|
|
93
138
|
country_name == o.country_name &&
|
|
94
139
|
three_letter_code == o.three_letter_code &&
|
|
95
140
|
iso_two_letter_code == o.iso_two_letter_code &&
|
|
96
|
-
is_european_union_member == o.is_european_union_member
|
|
141
|
+
is_european_union_member == o.is_european_union_member &&
|
|
142
|
+
iso_currency_code == o.iso_currency_code &&
|
|
143
|
+
currency_symbol == o.currency_symbol &&
|
|
144
|
+
currency_english_name == o.currency_english_name &&
|
|
145
|
+
region == o.region &&
|
|
146
|
+
subregion == o.subregion
|
|
97
147
|
end
|
|
98
148
|
|
|
99
149
|
# @see the `==` method
|
|
@@ -105,7 +155,7 @@ module CloudmersiveValidateApiClient
|
|
|
105
155
|
# Calculates hash code according to all attributes.
|
|
106
156
|
# @return [Fixnum] Hash code
|
|
107
157
|
def hash
|
|
108
|
-
[country_name, three_letter_code, iso_two_letter_code, is_european_union_member].hash
|
|
158
|
+
[country_name, three_letter_code, iso_two_letter_code, is_european_union_member, iso_currency_code, currency_symbol, currency_english_name, region, subregion].hash
|
|
109
159
|
end
|
|
110
160
|
|
|
111
161
|
# Builds the object from hash
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#validateapi
|
|
3
|
+
|
|
4
|
+
#The validation APIs help you validate data. Check if an E-mail address is real. Check if a domain is real. Check up on an IP address, and even where it is located. All this and much more is available in the validation API.
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: v1
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.14
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'date'
|
|
14
|
+
|
|
15
|
+
module CloudmersiveValidateApiClient
|
|
16
|
+
# Result of performing a domain quality score operation
|
|
17
|
+
class DomainQualityResponse
|
|
18
|
+
# The quality score of the domain name; possible values are 0.0 to 10.0 with 10.0 being the highest and 0.0 being the lowest quality.
|
|
19
|
+
attr_accessor :domain_quality_score
|
|
20
|
+
|
|
21
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
22
|
+
def self.attribute_map
|
|
23
|
+
{
|
|
24
|
+
:'domain_quality_score' => :'DomainQualityScore'
|
|
25
|
+
}
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
# Attribute type mapping.
|
|
29
|
+
def self.swagger_types
|
|
30
|
+
{
|
|
31
|
+
:'domain_quality_score' => :'Float'
|
|
32
|
+
}
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
# Initializes the object
|
|
36
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
37
|
+
def initialize(attributes = {})
|
|
38
|
+
return unless attributes.is_a?(Hash)
|
|
39
|
+
|
|
40
|
+
# convert string to symbol for hash key
|
|
41
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
42
|
+
|
|
43
|
+
if attributes.has_key?(:'DomainQualityScore')
|
|
44
|
+
self.domain_quality_score = attributes[:'DomainQualityScore']
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
49
|
+
# @return Array for valid properties with the reasons
|
|
50
|
+
def list_invalid_properties
|
|
51
|
+
invalid_properties = Array.new
|
|
52
|
+
invalid_properties
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
# Check to see if the all the properties in the model are valid
|
|
56
|
+
# @return true if the model is valid
|
|
57
|
+
def valid?
|
|
58
|
+
true
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
# Checks equality by comparing each attribute.
|
|
62
|
+
# @param [Object] Object to be compared
|
|
63
|
+
def ==(o)
|
|
64
|
+
return true if self.equal?(o)
|
|
65
|
+
self.class == o.class &&
|
|
66
|
+
domain_quality_score == o.domain_quality_score
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
# @see the `==` method
|
|
70
|
+
# @param [Object] Object to be compared
|
|
71
|
+
def eql?(o)
|
|
72
|
+
self == o
|
|
73
|
+
end
|
|
74
|
+
|
|
75
|
+
# Calculates hash code according to all attributes.
|
|
76
|
+
# @return [Fixnum] Hash code
|
|
77
|
+
def hash
|
|
78
|
+
[domain_quality_score].hash
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
# Builds the object from hash
|
|
82
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
83
|
+
# @return [Object] Returns the model itself
|
|
84
|
+
def build_from_hash(attributes)
|
|
85
|
+
return nil unless attributes.is_a?(Hash)
|
|
86
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
87
|
+
if type =~ /\AArray<(.*)>/i
|
|
88
|
+
# check to ensure the input is an array given that the attribute
|
|
89
|
+
# is documented as an array but the input is not
|
|
90
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
91
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
92
|
+
end
|
|
93
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
94
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
95
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
self
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
# Deserializes the data based on type
|
|
102
|
+
# @param string type Data type
|
|
103
|
+
# @param string value Value to be deserialized
|
|
104
|
+
# @return [Object] Deserialized data
|
|
105
|
+
def _deserialize(type, value)
|
|
106
|
+
case type.to_sym
|
|
107
|
+
when :DateTime
|
|
108
|
+
DateTime.parse(value)
|
|
109
|
+
when :Date
|
|
110
|
+
Date.parse(value)
|
|
111
|
+
when :String
|
|
112
|
+
value.to_s
|
|
113
|
+
when :Integer
|
|
114
|
+
value.to_i
|
|
115
|
+
when :Float
|
|
116
|
+
value.to_f
|
|
117
|
+
when :BOOLEAN
|
|
118
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
119
|
+
true
|
|
120
|
+
else
|
|
121
|
+
false
|
|
122
|
+
end
|
|
123
|
+
when :Object
|
|
124
|
+
# generic object (usually a Hash), return directly
|
|
125
|
+
value
|
|
126
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
|
127
|
+
inner_type = Regexp.last_match[:inner_type]
|
|
128
|
+
value.map { |v| _deserialize(inner_type, v) }
|
|
129
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
130
|
+
k_type = Regexp.last_match[:k_type]
|
|
131
|
+
v_type = Regexp.last_match[:v_type]
|
|
132
|
+
{}.tap do |hash|
|
|
133
|
+
value.each do |k, v|
|
|
134
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
135
|
+
end
|
|
136
|
+
end
|
|
137
|
+
else # model
|
|
138
|
+
temp_model = CloudmersiveValidateApiClient.const_get(type).new
|
|
139
|
+
temp_model.build_from_hash(value)
|
|
140
|
+
end
|
|
141
|
+
end
|
|
142
|
+
|
|
143
|
+
# Returns the string representation of the object
|
|
144
|
+
# @return [String] String presentation of the object
|
|
145
|
+
def to_s
|
|
146
|
+
to_hash.to_s
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
# to_body is an alias to to_hash (backward compatibility)
|
|
150
|
+
# @return [Hash] Returns the object in the form of hash
|
|
151
|
+
def to_body
|
|
152
|
+
to_hash
|
|
153
|
+
end
|
|
154
|
+
|
|
155
|
+
# Returns the object in the form of hash
|
|
156
|
+
# @return [Hash] Returns the object in the form of hash
|
|
157
|
+
def to_hash
|
|
158
|
+
hash = {}
|
|
159
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
160
|
+
value = self.send(attr)
|
|
161
|
+
next if value.nil?
|
|
162
|
+
hash[param] = _to_hash(value)
|
|
163
|
+
end
|
|
164
|
+
hash
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
# Outputs non-array value in the form of hash
|
|
168
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
169
|
+
# @param [Object] value Any valid value
|
|
170
|
+
# @return [Hash] Returns the value in the form of hash
|
|
171
|
+
def _to_hash(value)
|
|
172
|
+
if value.is_a?(Array)
|
|
173
|
+
value.compact.map { |v| _to_hash(v) }
|
|
174
|
+
elsif value.is_a?(Hash)
|
|
175
|
+
{}.tap do |hash|
|
|
176
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
177
|
+
end
|
|
178
|
+
elsif value.respond_to? :to_hash
|
|
179
|
+
value.to_hash
|
|
180
|
+
else
|
|
181
|
+
value
|
|
182
|
+
end
|
|
183
|
+
end
|
|
184
|
+
|
|
185
|
+
end
|
|
186
|
+
end
|