Module: CloudmersiveValidateApiClient

Defined in:
lib/cloudmersive-validate-api-client/version.rb,
lib/cloudmersive-validate-api-client.rb,
lib/cloudmersive-validate-api-client/api_error.rb,
lib/cloudmersive-validate-api-client/api_client.rb,
lib/cloudmersive-validate-api-client/api/vat_api.rb,
lib/cloudmersive-validate-api-client/api/name_api.rb,
lib/cloudmersive-validate-api-client/api/email_api.rb,
lib/cloudmersive-validate-api-client/configuration.rb,
lib/cloudmersive-validate-api-client/api/domain_api.rb,
lib/cloudmersive-validate-api-client/api/ip_address_api.rb,
lib/cloudmersive-validate-api-client/api/phone_number_api.rb,
lib/cloudmersive-validate-api-client/models/check_response.rb,
lib/cloudmersive-validate-api-client/models/whois_response.rb,
lib/cloudmersive-validate-api-client/models/geolocate_response.rb,
lib/cloudmersive-validate-api-client/models/get_gender_request.rb,
lib/cloudmersive-validate-api-client/models/vat_lookup_request.rb,
lib/cloudmersive-validate-api-client/models/get_gender_response.rb,
lib/cloudmersive-validate-api-client/models/vat_lookup_response.rb,
lib/cloudmersive-validate-api-client/models/address_get_servers_response.rb,
lib/cloudmersive-validate-api-client/models/full_name_validation_request.rb,
lib/cloudmersive-validate-api-client/models/last_name_validation_request.rb,
lib/cloudmersive-validate-api-client/models/first_name_validation_request.rb,
lib/cloudmersive-validate-api-client/models/full_name_validation_response.rb,
lib/cloudmersive-validate-api-client/models/last_name_validation_response.rb,
lib/cloudmersive-validate-api-client/models/phone_number_validate_request.rb,
lib/cloudmersive-validate-api-client/models/first_name_validation_response.rb,
lib/cloudmersive-validate-api-client/models/full_email_validation_response.rb,
lib/cloudmersive-validate-api-client/models/phone_number_validation_response.rb,
lib/cloudmersive-validate-api-client/models/address_verify_syntax_only_response.rb

Overview

#validateapi

#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.

OpenAPI spec version: v1

Generated by: github.com/swagger-api/swagger-codegen.git Swagger Codegen version: unset

Defined Under Namespace

Classes: AddressGetServersResponse, AddressVerifySyntaxOnlyResponse, ApiClient, ApiError, CheckResponse, Configuration, DomainApi, EmailApi, FirstNameValidationRequest, FirstNameValidationResponse, FullEmailValidationResponse, FullNameValidationRequest, FullNameValidationResponse, GeolocateResponse, GetGenderRequest, GetGenderResponse, IPAddressApi, LastNameValidationRequest, LastNameValidationResponse, NameApi, PhoneNumberApi, PhoneNumberValidateRequest, PhoneNumberValidationResponse, VatApi, VatLookupRequest, VatLookupResponse, WhoisResponse

Constant Summary collapse

VERSION =
"1.3.1"

Class Method Summary collapse

Class Method Details

.configureObject

Customize default settings for the SDK using block.

CloudmersiveValidateApiClient.configure do |config|
  config.username = "xxx"
  config.password = "xxx"
end

If no block given, return the default Configuration object.



55
56
57
58
59
60
61
# File 'lib/cloudmersive-validate-api-client.rb', line 55

def configure
  if block_given?
    yield(Configuration.default)
  else
    Configuration.default
  end
end