diff --git a/README.md b/README.md index 887fea31..16c4996d 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,24 @@ NamSor API v2 NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! - For more information, please visit [http://www.namsor.com/](http://www.namsor.com/) +Refer to the [NamSor API Doc](https://v2.namsor.com/NamSorAPIv2/apidoc.html) for detailed API documentation. -*Automatically generated by the [OpenAPI Generator](https://openapi-generator.tech)* +Also, have a look at the Wiki [NamSor Wiki Doc](https://github.com/namsor/namsor-tools-v2/wiki/NamSor-Tools-V2) for release notes and taxonomies. + +For more information, please visit [http://www.namsor.com/](http://www.namsor.com/) + +*Automatically generated by the [OpenAPI Generator](https://openapi-generator.tech)*11 + +## Release Notes + +NamSorAPIv2.0.12 (2021-01-31) +============================ +-Improvements for gender classification of full names +-Split Diaspora taxonomy classes Irish,British -> Irish,English,Scottish,Welsh (British remains as first/second best alternative for now) +-Improve Diaspora classification with non LATIN names +-Added Corridor API for classifying names in cross-border contexts (relevant for : diaspora remittances, international travel, foreign direct investment, crowdfunding etc.) +-Added a general name classification API (nameType), accuracy in range 90-95% +-[BETA] UI : added an online CSV tool to process files from JavaScript client, append gender, origin, country, diaspora or US 'race'/ethnicity to a list of names in Excel/CSV format. ## Requirements @@ -72,16 +87,17 @@ Then manually install the following JARs: Please follow the [installation](#installation) instruction and execute the following Java code: ```java +package com.namsor.namsorsample; import com.namsor.sdk2.invoke.*; import com.namsor.sdk2.invoke.auth.*; import com.namsor.sdk2.model.*; -import com.namsor.sdk2.api.AdminApi; +import com.namsor.sdk2.api.PersonalApi; import java.io.File; import java.util.*; -public class AdminApiExample { +public class PersonalApiSample { public static void main(String[] args) { ApiClient defaultClient = Configuration.getDefaultApiClient(); @@ -92,21 +108,75 @@ public class AdminApiExample { // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) //api_key.setApiKeyPrefix("Token"); - AdminApi apiInstance = new AdminApi(); - String apiKey = "apiKey_example"; // String | - Long usageCredits = 56L; // Long | - String userMessage = "userMessage_example"; // String | + PersonalApi apiInstance = new PersonalApi(); + + // should contain 10 to 100 names at a time, per API call + BatchFirstLastNameIn batchFirstLastNameIn = new BatchFirstLastNameIn(); // BatchFirstLastNameIn | A list of personal names + batchFirstLastNameIn.setPersonalNames(new ArrayList()); + FirstLastNameIn name1 = new FirstLastNameIn(); + name1.setId("123"); + name1.setFirstName("Mary"); + name1.setLastName("O'Neil"); + batchFirstLastNameIn.getPersonalNames().add(name1); + FirstLastNameIn name2 = new FirstLastNameIn(); + name2.setId("234"); + name2.setFirstName("Roberto"); + name2.setLastName("Rossini"); + batchFirstLastNameIn.getPersonalNames().add(name2); try { - SystemMetricsOut result = apiInstance.addCredits(apiKey, usageCredits, userMessage); + BatchFirstLastNameOriginedOut result = apiInstance.originBatch(batchFirstLastNameIn); System.out.println(result); } catch (ApiException e) { - System.err.println("Exception when calling AdminApi#addCredits"); + System.err.println("Exception when calling PersonalApi#originBatch"); e.printStackTrace(); } } } + ``` +This will output the following : +```javascript +class BatchFirstLastNameOriginedOut { + personalNames: [class FirstLastNameOriginedOut { + id: 123 + firstName: Mary + lastName: O'Neil + countryOrigin: IE + countryOriginAlt: GB + countriesOriginTop: [IE, GB, KE, GH, LR, FR, TZ, NG, IL, EG] + score: 26.729154354675913 + regionOrigin: Europe + topRegionOrigin: Europe + subRegionOrigin: Northern Europe + probabilityCalibrated: 0.9303604468868103 + probabilityAltCalibrated: 0.9930598411485871 + }, class FirstLastNameOriginedOut { + id: 123 + firstName: Roberto + lastName: Rossini + countryOrigin: IT + countryOriginAlt: ES + countriesOriginTop: [IT, ES, CH, ID, PT, ZA, IL, AT, FI, FR] + score: 36.490714227516584 + regionOrigin: Europe + topRegionOrigin: Europe + subRegionOrigin: Southern Europe + probabilityCalibrated: 0.9824811693994274 + probabilityAltCalibrated: 0.9930598411485871 + }] +} +``` + +## Documentation for Authorization + +Authentication schemes defined for the API: +### api_key + +- **Type**: API key +- **API key parameter name**: X-API-KEY +- **Location**: HTTP header + ## Documentation for API Endpoints @@ -114,12 +184,43 @@ All URIs are relative to *https://v2.namsor.com/NamSorAPIv2* Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- -*AdminApi* | [**addCredits**](docs/AdminApi.md#addCredits) | **GET** /api2/json/addCredits/{apiKey}/{usageCredits}/{userMessage} | Add usage credits to an API Key. -*AdminApi* | [**anonymize**](docs/AdminApi.md#anonymize) | **GET** /api2/json/anonymize/{source}/{anonymized} | Activate/deactivate anonymization for a source. +*PersonalApi* | [**corridor**](docs/PersonalApi.md#corridor) | **GET** /api2/json/corridor/{countryIso2From}/{firstNameFrom}/{lastNameFrom}/{countryIso2To}/{firstNameTo}/{lastNameTo} | [USES 20 UNITS PER NAME COUPLE] Infer several classifications for a cross border interaction between names (ex. remit, travel, intl com) +*PersonalApi* | [**corridorBatch**](docs/PersonalApi.md#corridorBatch) | **POST** /api2/json/corridorBatch | [USES 20 UNITS PER NAME PAIR] Infer several classifications for up to 100 cross border interaction between names (ex. remit, travel, intl com) +*PersonalApi* | [**country**](docs/PersonalApi.md#country) | **GET** /api2/json/country/{personalNameFull} | [USES 10 UNITS PER NAME] Infer the likely country of residence of a personal full name, or one surname. Assumes names as they are in the country of residence OR the country of origin. +*PersonalApi* | [**countryBatch**](docs/PersonalApi.md#countryBatch) | **POST** /api2/json/countryBatch | [USES 10 UNITS PER NAME] Infer the likely country of residence of up to 100 personal full names, or surnames. Assumes names as they are in the country of residence OR the country of origin. +*PersonalApi* | [**diaspora**](docs/PersonalApi.md#diaspora) | **GET** /api2/json/diaspora/{countryIso2}/{firstName}/{lastName} | [USES 20 UNITS PER NAME] Infer the likely ethnicity/diaspora of a personal name, given a country of residence ISO2 code (ex. US, CA, AU, NZ etc.) +*PersonalApi* | [**diasporaBatch**](docs/PersonalApi.md#diasporaBatch) | **POST** /api2/json/diasporaBatch | [USES 20 UNITS PER NAME] Infer the likely ethnicity/diaspora of up to 100 personal names, given a country of residence ISO2 code (ex. US, CA, AU, NZ etc.) +*PersonalApi* | [**gender**](docs/PersonalApi.md#gender) | **GET** /api2/json/gender/{firstName}/{lastName} | Infer the likely gender of a name. +*PersonalApi* | [**genderBatch**](docs/PersonalApi.md#genderBatch) | **POST** /api2/json/genderBatch | Infer the likely gender of up to 100 names, detecting automatically the cultural context. +*PersonalApi* | [**genderFull**](docs/PersonalApi.md#genderFull) | **GET** /api2/json/genderFull/{fullName} | Infer the likely gender of a full name, ex. John H. Smith +*PersonalApi* | [**genderFullBatch**](docs/PersonalApi.md#genderFullBatch) | **POST** /api2/json/genderFullBatch | Infer the likely gender of up to 100 full names, detecting automatically the cultural context. +*PersonalApi* | [**genderFullGeo**](docs/PersonalApi.md#genderFullGeo) | **GET** /api2/json/genderFullGeo/{fullName}/{countryIso2} | Infer the likely gender of a full name, given a local context (ISO2 country code). +*PersonalApi* | [**genderFullGeoBatch**](docs/PersonalApi.md#genderFullGeoBatch) | **POST** /api2/json/genderFullGeoBatch | Infer the likely gender of up to 100 full names, with a given cultural context (country ISO2 code). +*PersonalApi* | [**genderGeo**](docs/PersonalApi.md#genderGeo) | **GET** /api2/json/genderGeo/{firstName}/{lastName}/{countryIso2} | Infer the likely gender of a name, given a local context (ISO2 country code). +*PersonalApi* | [**genderGeoBatch**](docs/PersonalApi.md#genderGeoBatch) | **POST** /api2/json/genderGeoBatch | Infer the likely gender of up to 100 names, each given a local context (ISO2 country code). +*PersonalApi* | [**origin**](docs/PersonalApi.md#origin) | **GET** /api2/json/origin/{firstName}/{lastName} | [USES 10 UNITS PER NAME] Infer the likely country of origin of a personal name. Assumes names as they are in the country of origin. For US, CA, AU, NZ and other melting-pots : use 'diaspora' instead. +*PersonalApi* | [**originBatch**](docs/PersonalApi.md#originBatch) | **POST** /api2/json/originBatch | [USES 10 UNITS PER NAME] Infer the likely country of origin of up to 100 names, detecting automatically the cultural context. +*PersonalApi* | [**parseName**](docs/PersonalApi.md#parseName) | **GET** /api2/json/parseName/{nameFull} | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. +*PersonalApi* | [**parseNameBatch**](docs/PersonalApi.md#parseNameBatch) | **POST** /api2/json/parseNameBatch | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. +*PersonalApi* | [**parseNameGeo**](docs/PersonalApi.md#parseNameGeo) | **GET** /api2/json/parseName/{nameFull}/{countryIso2} | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. For better accuracy, provide a geographic context. +*PersonalApi* | [**parseNameGeoBatch**](docs/PersonalApi.md#parseNameGeoBatch) | **POST** /api2/json/parseNameGeoBatch | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. Giving a local context improves precision. +*PersonalApi* | [**parsedGenderBatch**](docs/PersonalApi.md#parsedGenderBatch) | **POST** /api2/json/parsedGenderBatch | Infer the likely gender of up to 100 fully parsed names, detecting automatically the cultural context. +*PersonalApi* | [**parsedGenderGeoBatch**](docs/PersonalApi.md#parsedGenderGeoBatch) | **POST** /api2/json/parsedGenderGeoBatch | Infer the likely gender of up to 100 fully parsed names, detecting automatically the cultural context. +*PersonalApi* | [**usRaceEthnicity**](docs/PersonalApi.md#usRaceEthnicity) | **GET** /api2/json/usRaceEthnicity/{firstName}/{lastName} | [USES 10 UNITS PER NAME] Infer a US resident's likely race/ethnicity according to US Census taxonomy W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). +*PersonalApi* | [**usRaceEthnicityBatch**](docs/PersonalApi.md#usRaceEthnicityBatch) | **POST** /api2/json/usRaceEthnicityBatch | [USES 10 UNITS PER NAME] Infer up-to 100 US resident's likely race/ethnicity according to US Census taxonomy. +*PersonalApi* | [**usRaceEthnicityZIP5**](docs/PersonalApi.md#usRaceEthnicityZIP5) | **GET** /api2/json/usRaceEthnicityZIP5/{firstName}/{lastName}/{zip5Code} | [USES 10 UNITS PER NAME] Infer a US resident's likely race/ethnicity according to US Census taxonomy, using (optional) ZIP5 code info. Output is W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). +*PersonalApi* | [**usZipRaceEthnicityBatch**](docs/PersonalApi.md#usZipRaceEthnicityBatch) | **POST** /api2/json/usZipRaceEthnicityBatch | [USES 10 UNITS PER NAME] Infer up-to 100 US resident's likely race/ethnicity according to US Census taxonomy, with (optional) ZIP code. +*SocialApi* | [**phoneCode**](docs/SocialApi.md#phoneCode) | **GET** /api2/json/phoneCode/{firstName}/{lastName}/{phoneNumber} | [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, given a personal name and formatted / unformatted phone number. +*SocialApi* | [**phoneCodeBatch**](docs/SocialApi.md#phoneCodeBatch) | **POST** /api2/json/phoneCodeBatch | [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, of up to 100 personal names, detecting automatically the local context given a name and formatted / unformatted phone number. +*SocialApi* | [**phoneCodeGeo**](docs/SocialApi.md#phoneCodeGeo) | **GET** /api2/json/phoneCodeGeo/{firstName}/{lastName}/{phoneNumber}/{countryIso2} | [USES 11 UNITS PER NAME] Infer the likely phone prefix, given a personal name and formatted / unformatted phone number, with a local context (ISO2 country of residence). +*SocialApi* | [**phoneCodeGeoBatch**](docs/SocialApi.md#phoneCodeGeoBatch) | **POST** /api2/json/phoneCodeGeoBatch | [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, of up to 100 personal names, with a local context (ISO2 country of residence). +*SocialApi* | [**phoneCodeGeoFeedbackLoop**](docs/SocialApi.md#phoneCodeGeoFeedbackLoop) | **GET** /api2/json/phoneCodeGeoFeedbackLoop/{firstName}/{lastName}/{phoneNumber}/{phoneNumberE164}/{countryIso2} | [CREDITS 1 UNIT] Feedback loop to better infer the likely phone prefix, given a personal name and formatted / unformatted phone number, with a local context (ISO2 country of residence). *AdminApi* | [**apiStatus**](docs/AdminApi.md#apiStatus) | **GET** /api2/json/apiStatus | Prints the current status of the classifiers. *AdminApi* | [**apiUsage**](docs/AdminApi.md#apiUsage) | **GET** /api2/json/apiUsage | Print current API usage. *AdminApi* | [**apiUsageHistory**](docs/AdminApi.md#apiUsageHistory) | **GET** /api2/json/apiUsageHistory | Print historical API usage. *AdminApi* | [**apiUsageHistoryAggregate**](docs/AdminApi.md#apiUsageHistoryAggregate) | **GET** /api2/json/apiUsageHistoryAggregate | Print historical API usage (in an aggregated view, by service, by day/hour/min). +*AdminApi* | [**addCredits**](docs/AdminApi.md#addCredits) | **GET** /api2/json/addCredits/{apiKey}/{usageCredits}/{userMessage} | Add usage credits to an API Key. +*AdminApi* | [**anonymize**](docs/AdminApi.md#anonymize) | **GET** /api2/json/anonymize/{source}/{anonymized} | Activate/deactivate anonymization for a source. *AdminApi* | [**availablePlans**](docs/AdminApi.md#availablePlans) | **GET** /api2/json/availablePlans/{token} | List all available plans in the user's preferred currency. *AdminApi* | [**availablePlans1**](docs/AdminApi.md#availablePlans1) | **GET** /api2/json/availablePlans | List all available plans in the default currency (usd). *AdminApi* | [**availableServices**](docs/AdminApi.md#availableServices) | **GET** /api2/json/apiServices | List of API services and usage cost in Units (default is 1=ONE Unit). @@ -183,37 +284,6 @@ Class | Method | HTTP request | Description *JapaneseApi* | [**japaneseNameMatchFeedbackLoop**](docs/JapaneseApi.md#japaneseNameMatchFeedbackLoop) | **GET** /api2/json/japaneseNameMatchFeedbackLoop/{japaneseSurnameLatin}/{japaneseGivenNameLatin}/{japaneseName} | [CREDITS 1 UNIT] Feedback loop to better perform matching Japanese name in KANJI ex. 山本 早苗 with a romanized name ex. Yamamoto Sanae *JapaneseApi* | [**parseJapaneseName**](docs/JapaneseApi.md#parseJapaneseName) | **GET** /api2/json/parseJapaneseName/{japaneseName} | Infer the likely first/last name structure of a name, ex. 山本 早苗 or Yamamoto Sanae *JapaneseApi* | [**parseJapaneseNameBatch**](docs/JapaneseApi.md#parseJapaneseNameBatch) | **POST** /api2/json/parseJapaneseNameBatch | Infer the likely first/last name structure of a name, ex. 山本 早苗 or Yamamoto Sanae -*PersonalApi* | [**corridor**](docs/PersonalApi.md#corridor) | **GET** /api2/json/corridor/{countryIso2From}/{firstNameFrom}/{lastNameFrom}/{countryIso2To}/{firstNameTo}/{lastNameTo} | [USES 20 UNITS PER NAME COUPLE] Infer several classifications for a cross border interaction between names (ex. remit, travel, intl com) -*PersonalApi* | [**corridorBatch**](docs/PersonalApi.md#corridorBatch) | **POST** /api2/json/corridorBatch | [USES 20 UNITS PER NAME PAIR] Infer several classifications for up to 100 cross border interaction between names (ex. remit, travel, intl com) -*PersonalApi* | [**country**](docs/PersonalApi.md#country) | **GET** /api2/json/country/{personalNameFull} | [USES 10 UNITS PER NAME] Infer the likely country of residence of a personal full name, or one surname. Assumes names as they are in the country of residence OR the country of origin. -*PersonalApi* | [**countryBatch**](docs/PersonalApi.md#countryBatch) | **POST** /api2/json/countryBatch | [USES 10 UNITS PER NAME] Infer the likely country of residence of up to 100 personal full names, or surnames. Assumes names as they are in the country of residence OR the country of origin. -*PersonalApi* | [**diaspora**](docs/PersonalApi.md#diaspora) | **GET** /api2/json/diaspora/{countryIso2}/{firstName}/{lastName} | [USES 20 UNITS PER NAME] Infer the likely ethnicity/diaspora of a personal name, given a country of residence ISO2 code (ex. US, CA, AU, NZ etc.) -*PersonalApi* | [**diasporaBatch**](docs/PersonalApi.md#diasporaBatch) | **POST** /api2/json/diasporaBatch | [USES 20 UNITS PER NAME] Infer the likely ethnicity/diaspora of up to 100 personal names, given a country of residence ISO2 code (ex. US, CA, AU, NZ etc.) -*PersonalApi* | [**gender**](docs/PersonalApi.md#gender) | **GET** /api2/json/gender/{firstName}/{lastName} | Infer the likely gender of a name. -*PersonalApi* | [**genderBatch**](docs/PersonalApi.md#genderBatch) | **POST** /api2/json/genderBatch | Infer the likely gender of up to 100 names, detecting automatically the cultural context. -*PersonalApi* | [**genderFull**](docs/PersonalApi.md#genderFull) | **GET** /api2/json/genderFull/{fullName} | Infer the likely gender of a full name, ex. John H. Smith -*PersonalApi* | [**genderFullBatch**](docs/PersonalApi.md#genderFullBatch) | **POST** /api2/json/genderFullBatch | Infer the likely gender of up to 100 full names, detecting automatically the cultural context. -*PersonalApi* | [**genderFullGeo**](docs/PersonalApi.md#genderFullGeo) | **GET** /api2/json/genderFullGeo/{fullName}/{countryIso2} | Infer the likely gender of a full name, given a local context (ISO2 country code). -*PersonalApi* | [**genderFullGeoBatch**](docs/PersonalApi.md#genderFullGeoBatch) | **POST** /api2/json/genderFullGeoBatch | Infer the likely gender of up to 100 full names, with a given cultural context (country ISO2 code). -*PersonalApi* | [**genderGeo**](docs/PersonalApi.md#genderGeo) | **GET** /api2/json/genderGeo/{firstName}/{lastName}/{countryIso2} | Infer the likely gender of a name, given a local context (ISO2 country code). -*PersonalApi* | [**genderGeoBatch**](docs/PersonalApi.md#genderGeoBatch) | **POST** /api2/json/genderGeoBatch | Infer the likely gender of up to 100 names, each given a local context (ISO2 country code). -*PersonalApi* | [**origin**](docs/PersonalApi.md#origin) | **GET** /api2/json/origin/{firstName}/{lastName} | [USES 10 UNITS PER NAME] Infer the likely country of origin of a personal name. Assumes names as they are in the country of origin. For US, CA, AU, NZ and other melting-pots : use 'diaspora' instead. -*PersonalApi* | [**originBatch**](docs/PersonalApi.md#originBatch) | **POST** /api2/json/originBatch | [USES 10 UNITS PER NAME] Infer the likely country of origin of up to 100 names, detecting automatically the cultural context. -*PersonalApi* | [**parseName**](docs/PersonalApi.md#parseName) | **GET** /api2/json/parseName/{nameFull} | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. -*PersonalApi* | [**parseNameBatch**](docs/PersonalApi.md#parseNameBatch) | **POST** /api2/json/parseNameBatch | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. -*PersonalApi* | [**parseNameGeo**](docs/PersonalApi.md#parseNameGeo) | **GET** /api2/json/parseName/{nameFull}/{countryIso2} | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. For better accuracy, provide a geographic context. -*PersonalApi* | [**parseNameGeoBatch**](docs/PersonalApi.md#parseNameGeoBatch) | **POST** /api2/json/parseNameGeoBatch | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. Giving a local context improves precision. -*PersonalApi* | [**parsedGenderBatch**](docs/PersonalApi.md#parsedGenderBatch) | **POST** /api2/json/parsedGenderBatch | Infer the likely gender of up to 100 fully parsed names, detecting automatically the cultural context. -*PersonalApi* | [**parsedGenderGeoBatch**](docs/PersonalApi.md#parsedGenderGeoBatch) | **POST** /api2/json/parsedGenderGeoBatch | Infer the likely gender of up to 100 fully parsed names, detecting automatically the cultural context. -*PersonalApi* | [**usRaceEthnicity**](docs/PersonalApi.md#usRaceEthnicity) | **GET** /api2/json/usRaceEthnicity/{firstName}/{lastName} | [USES 10 UNITS PER NAME] Infer a US resident's likely race/ethnicity according to US Census taxonomy W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). -*PersonalApi* | [**usRaceEthnicityBatch**](docs/PersonalApi.md#usRaceEthnicityBatch) | **POST** /api2/json/usRaceEthnicityBatch | [USES 10 UNITS PER NAME] Infer up-to 100 US resident's likely race/ethnicity according to US Census taxonomy. -*PersonalApi* | [**usRaceEthnicityZIP5**](docs/PersonalApi.md#usRaceEthnicityZIP5) | **GET** /api2/json/usRaceEthnicityZIP5/{firstName}/{lastName}/{zip5Code} | [USES 10 UNITS PER NAME] Infer a US resident's likely race/ethnicity according to US Census taxonomy, using (optional) ZIP5 code info. Output is W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). -*PersonalApi* | [**usZipRaceEthnicityBatch**](docs/PersonalApi.md#usZipRaceEthnicityBatch) | **POST** /api2/json/usZipRaceEthnicityBatch | [USES 10 UNITS PER NAME] Infer up-to 100 US resident's likely race/ethnicity according to US Census taxonomy, with (optional) ZIP code. -*SocialApi* | [**phoneCode**](docs/SocialApi.md#phoneCode) | **GET** /api2/json/phoneCode/{firstName}/{lastName}/{phoneNumber} | [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, given a personal name and formatted / unformatted phone number. -*SocialApi* | [**phoneCodeBatch**](docs/SocialApi.md#phoneCodeBatch) | **POST** /api2/json/phoneCodeBatch | [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, of up to 100 personal names, detecting automatically the local context given a name and formatted / unformatted phone number. -*SocialApi* | [**phoneCodeGeo**](docs/SocialApi.md#phoneCodeGeo) | **GET** /api2/json/phoneCodeGeo/{firstName}/{lastName}/{phoneNumber}/{countryIso2} | [USES 11 UNITS PER NAME] Infer the likely phone prefix, given a personal name and formatted / unformatted phone number, with a local context (ISO2 country of residence). -*SocialApi* | [**phoneCodeGeoBatch**](docs/SocialApi.md#phoneCodeGeoBatch) | **POST** /api2/json/phoneCodeGeoBatch | [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, of up to 100 personal names, with a local context (ISO2 country of residence). -*SocialApi* | [**phoneCodeGeoFeedbackLoop**](docs/SocialApi.md#phoneCodeGeoFeedbackLoop) | **GET** /api2/json/phoneCodeGeoFeedbackLoop/{firstName}/{lastName}/{phoneNumber}/{phoneNumberE164}/{countryIso2} | [CREDITS 1 UNIT] Feedback loop to better infer the likely phone prefix, given a personal name and formatted / unformatted phone number, with a local context (ISO2 country of residence). ## Documentation for Models @@ -306,15 +376,6 @@ Class | Method | HTTP request | Description - [UserInfoOut](docs/UserInfoOut.md) -## Documentation for Authorization - -Authentication schemes defined for the API: -### api_key - -- **Type**: API key -- **API key parameter name**: X-API-KEY -- **Location**: HTTP header - ## Recommendation diff --git a/README_v211.md b/README_v211.md new file mode 100644 index 00000000..f094e876 --- /dev/null +++ b/README_v211.md @@ -0,0 +1,330 @@ +# namsor-sdk2 + +NamSor API v2 +- API version: 2.0.11 + - Build date: 2020-11-01T10:54:33.640+01:00[Europe/Berlin] + +NamSor API v2 : enpoints to process personal names (gender, cultural origin or ethnicity) in all alphabets or languages. Use GET methods for small tests, but prefer POST methods for higher throughput (batch processing of up to 100 names at a time). Need something you can't find here? We have many more features coming soon. Let us know, we'll do our best to add it! + +Refer to the [NamSor API Doc](https://v2.namsor.com/NamSorAPIv2/apidoc.html) for detailed API documentation. + +Also, have a look at the Wiki [NamSor Wiki Doc](https://github.com/namsor/namsor-tools-v2/wiki/NamSor-Tools-V2) for release notes and taxonomies. + +For more information, please visit [http://www.namsor.com/](http://www.namsor.com/) + +*Automatically generated by the [OpenAPI Generator](https://openapi-generator.tech)*11 + + +## Requirements + +Building the API client library requires: +1. Java 1.7+ +2. Maven/Gradle + +## Installation + +To install the API client library to your local Maven repository, simply execute: + +```shell +mvn clean install +``` + +To deploy it to a remote Maven repository instead, configure the settings of the repository and execute: + +```shell +mvn clean deploy +``` + +Refer to the [OSSRH Guide](http://central.sonatype.org/pages/ossrh-guide.html) for more information. + +### Maven users + +Add this dependency to your project's POM: + +```xml + + com.namsor + namsor-sdk2 + 2.0.11 + compile + +``` + +### Gradle users + +Add this dependency to your project's build file: + +```groovy +compile "com.namsor:namsor-sdk2:2.0.11" +``` + +### Others + +At first generate the JAR by executing: + +```shell +mvn clean package +``` + +Then manually install the following JARs: + +* `target/namsor-sdk2-2.0.11.jar` +* `target/lib/*.jar` + +## Getting Started + +Please follow the [installation](#installation) instruction and execute the following Java code: + +```java +package com.namsor.namsorsample; + +import com.namsor.sdk2.invoke.*; +import com.namsor.sdk2.invoke.auth.*; +import com.namsor.sdk2.model.*; +import com.namsor.sdk2.api.PersonalApi; + +import java.io.File; +import java.util.*; + +public class PersonalApiSample { + + public static void main(String[] args) { + ApiClient defaultClient = Configuration.getDefaultApiClient(); + + // Configure API key authorization: api_key + ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key"); + api_key.setApiKey("YOUR API KEY"); + // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null) + //api_key.setApiKeyPrefix("Token"); + + PersonalApi apiInstance = new PersonalApi(); + + // should contain 10 to 100 names at a time, per API call + BatchFirstLastNameIn batchFirstLastNameIn = new BatchFirstLastNameIn(); // BatchFirstLastNameIn | A list of personal names + batchFirstLastNameIn.setPersonalNames(new ArrayList()); + FirstLastNameIn name1 = new FirstLastNameIn(); + name1.setId("123"); + name1.setFirstName("Mary"); + name1.setLastName("O'Neil"); + batchFirstLastNameIn.getPersonalNames().add(name1); + FirstLastNameIn name2 = new FirstLastNameIn(); + name2.setId("234"); + name2.setFirstName("Roberto"); + name2.setLastName("Rossini"); + batchFirstLastNameIn.getPersonalNames().add(name2); + try { + BatchFirstLastNameOriginedOut result = apiInstance.originBatch(batchFirstLastNameIn); + System.out.println(result); + } catch (ApiException e) { + System.err.println("Exception when calling PersonalApi#originBatch"); + e.printStackTrace(); + } + } +} + + +``` +This will output the following : +```javascript +class BatchFirstLastNameOriginedOut { + personalNames: [class FirstLastNameOriginedOut { + id: 123 + firstName: Mary + lastName: O'Neil + countryOrigin: IE + countryOriginAlt: GB + countriesOriginTop: [IE, GB, KE, GH, LR, FR, TZ, NG, IL, EG] + score: 26.729154354675913 + regionOrigin: Europe + topRegionOrigin: Europe + subRegionOrigin: Northern Europe + probabilityCalibrated: 0.9303604468868103 + probabilityAltCalibrated: 0.9930598411485871 + }, class FirstLastNameOriginedOut { + id: 123 + firstName: Roberto + lastName: Rossini + countryOrigin: IT + countryOriginAlt: ES + countriesOriginTop: [IT, ES, CH, ID, PT, ZA, IL, AT, FI, FR] + score: 36.490714227516584 + regionOrigin: Europe + topRegionOrigin: Europe + subRegionOrigin: Southern Europe + probabilityCalibrated: 0.9824811693994274 + probabilityAltCalibrated: 0.9930598411485871 + }] +} +``` + +## Documentation for Authorization + +Authentication schemes defined for the API: +### api_key + +- **Type**: API key +- **API key parameter name**: X-API-KEY +- **Location**: HTTP header + + +## Documentation for API Endpoints + +All URIs are relative to *https://v2.namsor.com/NamSorAPIv2* + +Class | Method | HTTP request | Description +------------ | ------------- | ------------- | ------------- +*PersonalApi* | [**gender**](docs/PersonalApi.md#gender) | **GET** /api2/json/gender/{firstName}/{lastName} | Infer the likely gender of a name. +*PersonalApi* | [**genderBatch**](docs/PersonalApi.md#genderBatch) | **POST** /api2/json/genderBatch | Infer the likely gender of up to 100 names, detecting automatically the cultural context. +*PersonalApi* | [**genderFull**](docs/PersonalApi.md#genderFull) | **GET** /api2/json/genderFull/{fullName} | Infer the likely gender of a full name, ex. John H. Smith +*PersonalApi* | [**genderFullBatch**](docs/PersonalApi.md#genderFullBatch) | **POST** /api2/json/genderFullBatch | Infer the likely gender of up to 100 full names, detecting automatically the cultural context. +*PersonalApi* | [**genderFullGeo**](docs/PersonalApi.md#genderFullGeo) | **GET** /api2/json/genderFullGeo/{fullName}/{countryIso2} | Infer the likely gender of a full name, given a local context (ISO2 country code). +*PersonalApi* | [**genderFullGeoBatch**](docs/PersonalApi.md#genderFullGeoBatch) | **POST** /api2/json/genderFullGeoBatch | Infer the likely gender of up to 100 full names, with a given cultural context (country ISO2 code). +*PersonalApi* | [**genderGeo**](docs/PersonalApi.md#genderGeo) | **GET** /api2/json/genderGeo/{firstName}/{lastName}/{countryIso2} | Infer the likely gender of a name, given a local context (ISO2 country code). +*PersonalApi* | [**genderGeoBatch**](docs/PersonalApi.md#genderGeoBatch) | **POST** /api2/json/genderGeoBatch | Infer the likely gender of up to 100 names, each given a local context (ISO2 country code). +*PersonalApi* | [**country**](docs/PersonalApi.md#country) | **GET** /api2/json/country/{personalNameFull} | [USES 10 UNITS PER NAME] Infer the likely country of residence of a personal full name, or one surname. Assumes names as they are in the country of residence OR the country of origin. +*PersonalApi* | [**countryBatch**](docs/PersonalApi.md#countryBatch) | **POST** /api2/json/countryBatch | [USES 10 UNITS PER NAME] Infer the likely country of residence of up to 100 personal full names, or surnames. Assumes names as they are in the country of residence OR the country of origin. +*PersonalApi* | [**origin**](docs/PersonalApi.md#origin) | **GET** /api2/json/origin/{firstName}/{lastName} | [USES 10 UNITS PER NAME] Infer the likely country of origin of a personal name. Assumes names as they are in the country of origin. For US, CA, AU, NZ and other melting-pots : use 'diaspora' instead. +*PersonalApi* | [**originBatch**](docs/PersonalApi.md#originBatch) | **POST** /api2/json/originBatch | [USES 10 UNITS PER NAME] Infer the likely country of origin of up to 100 names, detecting automatically the cultural context. +*PersonalApi* | [**diaspora**](docs/PersonalApi.md#diaspora) | **GET** /api2/json/diaspora/{countryIso2}/{firstName}/{lastName} | [USES 20 UNITS PER NAME] Infer the likely ethnicity/diaspora of a personal name, given a country of residence ISO2 code (ex. US, CA, AU, NZ etc.) +*PersonalApi* | [**diasporaBatch**](docs/PersonalApi.md#diasporaBatch) | **POST** /api2/json/diasporaBatch | [USES 20 UNITS PER NAME] Infer the likely ethnicity/diaspora of up to 100 personal names, given a country of residence ISO2 code (ex. US, CA, AU, NZ etc.) +*PersonalApi* | [**usRaceEthnicity**](docs/PersonalApi.md#usRaceEthnicity) | **GET** /api2/json/usRaceEthnicity/{firstName}/{lastName} | [USES 10 UNITS PER NAME] Infer a US resident's likely race/ethnicity according to US Census taxonomy W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). +*PersonalApi* | [**usRaceEthnicityBatch**](docs/PersonalApi.md#usRaceEthnicityBatch) | **POST** /api2/json/usRaceEthnicityBatch | [USES 10 UNITS PER NAME] Infer up-to 100 US resident's likely race/ethnicity according to US Census taxonomy. +*PersonalApi* | [**usRaceEthnicityZIP5**](docs/PersonalApi.md#usRaceEthnicityZIP5) | **GET** /api2/json/usRaceEthnicityZIP5/{firstName}/{lastName}/{zip5Code} | [USES 10 UNITS PER NAME] Infer a US resident's likely race/ethnicity according to US Census taxonomy, using (optional) ZIP5 code info. Output is W_NL (white, non latino), HL (hispano latino), A (asian, non latino), B_NL (black, non latino). +*PersonalApi* | [**usZipRaceEthnicityBatch**](docs/PersonalApi.md#usZipRaceEthnicityBatch) | **POST** /api2/json/usZipRaceEthnicityBatch | [USES 10 UNITS PER NAME] Infer up-to 100 US resident's likely race/ethnicity according to US Census taxonomy, with (optional) ZIP code. +*PersonalApi* | [**parseName**](docs/PersonalApi.md#parseName) | **GET** /api2/json/parseName/{nameFull} | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. +*PersonalApi* | [**parseNameBatch**](docs/PersonalApi.md#parseNameBatch) | **POST** /api2/json/parseNameBatch | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. +*PersonalApi* | [**parseNameGeo**](docs/PersonalApi.md#parseNameGeo) | **GET** /api2/json/parseName/{nameFull}/{countryIso2} | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. For better accuracy, provide a geographic context. +*PersonalApi* | [**parseNameGeoBatch**](docs/PersonalApi.md#parseNameGeoBatch) | **POST** /api2/json/parseNameGeoBatch | Infer the likely first/last name structure of a name, ex. John Smith or SMITH, John or SMITH; John. Giving a local context improves precision. +*PersonalApi* | [**parsedGenderBatch**](docs/PersonalApi.md#parsedGenderBatch) | **POST** /api2/json/parsedGenderBatch | Infer the likely gender of up to 100 fully parsed names, detecting automatically the cultural context. +*PersonalApi* | [**parsedGenderGeoBatch**](docs/PersonalApi.md#parsedGenderGeoBatch) | **POST** /api2/json/parsedGenderGeoBatch | Infer the likely gender of up to 100 fully parsed names, detecting automatically the cultural context. +*AdminApi* | [**apiStatus**](docs/AdminApi.md#apiStatus) | **GET** /api2/json/apiStatus | Prints the current status of the classifiers. +*AdminApi* | [**apiUsage**](docs/AdminApi.md#apiUsage) | **GET** /api2/json/apiUsage | Print current API usage. +*AdminApi* | [**apiUsageHistory**](docs/AdminApi.md#apiUsageHistory) | **GET** /api2/json/apiUsageHistory | Print historical API usage. +*AdminApi* | [**apiUsageHistoryAggregate**](docs/AdminApi.md#apiUsageHistoryAggregate) | **GET** /api2/json/apiUsageHistoryAggregate | Print historical API usage (in an aggregated view, by service, by day/hour/min). +*AdminApi* | [**softwareVersion**](docs/AdminApi.md#softwareVersion) | **GET** /api2/json/softwareVersion | Get the current software version +*ChineseApi* | [**chineseNameCandidates**](docs/ChineseApi.md#chineseNameCandidates) | **GET** /api2/json/chineseNameCandidates/{chineseSurnameLatin}/{chineseGivenNameLatin} | Identify Chinese name candidates, based on the romanized name ex. Wang Xiaoming +*ChineseApi* | [**chineseNameCandidatesBatch**](docs/ChineseApi.md#chineseNameCandidatesBatch) | **POST** /api2/json/chineseNameCandidatesBatch | Identify Chinese name candidates, based on the romanized name (firstName = chineseGivenName; lastName=chineseSurname), ex. Wang Xiaoming +*ChineseApi* | [**chineseNameCandidatesGenderBatch**](docs/ChineseApi.md#chineseNameCandidatesGenderBatch) | **POST** /api2/json/chineseNameCandidatesGenderBatch | Identify Chinese name candidates, based on the romanized name (firstName = chineseGivenName; lastName=chineseSurname) ex. Wang Xiaoming. +*ChineseApi* | [**chineseNameGenderCandidates**](docs/ChineseApi.md#chineseNameGenderCandidates) | **GET** /api2/json/chineseNameGenderCandidates/{chineseSurnameLatin}/{chineseGivenNameLatin}/{knownGender} | Identify Chinese name candidates, based on the romanized name ex. Wang Xiaoming - having a known gender ('male' or 'female') +*ChineseApi* | [**chineseNameMatch**](docs/ChineseApi.md#chineseNameMatch) | **GET** /api2/json/chineseNameMatch/{chineseSurnameLatin}/{chineseGivenNameLatin}/{chineseName} | Return a score for matching Chinese name ex. 王晓明 with a romanized name ex. Wang Xiaoming +*ChineseApi* | [**chineseNameMatchBatch**](docs/ChineseApi.md#chineseNameMatchBatch) | **POST** /api2/json/chineseNameMatchBatch | Identify Chinese name candidates, based on the romanized name (firstName = chineseGivenName; lastName=chineseSurname), ex. Wang Xiaoming +*ChineseApi* | [**genderChineseName**](docs/ChineseApi.md#genderChineseName) | **GET** /api2/json/genderChineseName/{chineseName} | Infer the likely gender of a Chinese full name ex. 王晓明 +*ChineseApi* | [**genderChineseNameBatch**](docs/ChineseApi.md#genderChineseNameBatch) | **POST** /api2/json/genderChineseNameBatch | Infer the likely gender of up to 100 full names ex. 王晓明 +*ChineseApi* | [**genderChineseNamePinyin**](docs/ChineseApi.md#genderChineseNamePinyin) | **GET** /api2/json/genderChineseNamePinyin/{chineseSurnameLatin}/{chineseGivenNameLatin} | Infer the likely gender of a Chinese name in LATIN (Pinyin). +*ChineseApi* | [**genderChineseNamePinyinBatch**](docs/ChineseApi.md#genderChineseNamePinyinBatch) | **POST** /api2/json/genderChineseNamePinyinBatch | Infer the likely gender of up to 100 Chinese names in LATIN (Pinyin). +*ChineseApi* | [**parseChineseName**](docs/ChineseApi.md#parseChineseName) | **GET** /api2/json/parseChineseName/{chineseName} | Infer the likely first/last name structure of a name, ex. 王晓明 -> 王(surname) 晓明(given name) +*ChineseApi* | [**parseChineseNameBatch**](docs/ChineseApi.md#parseChineseNameBatch) | **POST** /api2/json/parseChineseNameBatch | Infer the likely first/last name structure of a name, ex. 王晓明 -> 王(surname) 晓明(given name). +*ChineseApi* | [**pinyinChineseName**](docs/ChineseApi.md#pinyinChineseName) | **GET** /api2/json/pinyinChineseName/{chineseName} | Romanize the Chinese name to Pinyin, ex. 王晓明 -> Wang (surname) Xiaoming (given name) +*ChineseApi* | [**pinyinChineseNameBatch**](docs/ChineseApi.md#pinyinChineseNameBatch) | **POST** /api2/json/pinyinChineseNameBatch | Romanize a list of Chinese name to Pinyin, ex. 王晓明 -> Wang (surname) Xiaoming (given name). +*GeneralApi* | [**nameType**](docs/GeneralApi.md#nameType) | **GET** /api2/json/nameType/{properNoun} | Infer the likely type of a proper noun (personal name, brand name, place name etc.) +*GeneralApi* | [**nameType1**](docs/GeneralApi.md#nameType1) | **GET** /api2/json/nameType/{properNoun}/{countryIso2} | Infer the likely type of a proper noun (personal name, brand name, place name etc.) +*JapaneseApi* | [**genderJapaneseNameFull**](docs/JapaneseApi.md#genderJapaneseNameFull) | **GET** /api2/json/genderJapaneseNameFull/{japaneseName} | Infer the likely gender of a Japanese full name ex. 王晓明 +*JapaneseApi* | [**genderJapaneseNameFullBatch**](docs/JapaneseApi.md#genderJapaneseNameFullBatch) | **POST** /api2/json/genderJapaneseNameFullBatch | Infer the likely gender of up to 100 full names +*JapaneseApi* | [**genderJapaneseNamePinyin**](docs/JapaneseApi.md#genderJapaneseNamePinyin) | **GET** /api2/json/genderJapaneseName/{japaneseSurname}/{japaneseGivenName} | Infer the likely gender of a Japanese name in LATIN (Pinyin). +*JapaneseApi* | [**genderJapaneseNamePinyinBatch**](docs/JapaneseApi.md#genderJapaneseNamePinyinBatch) | **POST** /api2/json/genderJapaneseNameBatch | Infer the likely gender of up to 100 Japanese names in LATIN (Pinyin). +*JapaneseApi* | [**japaneseNameKanjiCandidates**](docs/JapaneseApi.md#japaneseNameKanjiCandidates) | **GET** /api2/json/japaneseNameKanjiCandidates/{japaneseSurnameLatin}/{japaneseGivenNameLatin} | Identify japanese name candidates in KANJI, based on the romanized name ex. Yamamoto Sanae +*JapaneseApi* | [**japaneseNameKanjiCandidatesBatch**](docs/JapaneseApi.md#japaneseNameKanjiCandidatesBatch) | **POST** /api2/json/japaneseNameKanjiCandidatesBatch | Identify japanese name candidates in KANJI, based on the romanized name (firstName = japaneseGivenName; lastName=japaneseSurname), ex. Yamamoto Sanae +*JapaneseApi* | [**japaneseNameLatinCandidates**](docs/JapaneseApi.md#japaneseNameLatinCandidates) | **GET** /api2/json/japaneseNameLatinCandidates/{japaneseSurnameKanji}/{japaneseGivenNameKanji} | Romanize japanese name, based on the name in Kanji. +*JapaneseApi* | [**japaneseNameLatinCandidatesBatch**](docs/JapaneseApi.md#japaneseNameLatinCandidatesBatch) | **POST** /api2/json/japaneseNameLatinCandidatesBatch | Romanize japanese names, based on the name in KANJI +*JapaneseApi* | [**japaneseNameMatch**](docs/JapaneseApi.md#japaneseNameMatch) | **GET** /api2/json/japaneseNameMatch/{japaneseSurnameLatin}/{japaneseGivenNameLatin}/{japaneseName} | Return a score for matching Japanese name in KANJI ex. 山本 早苗 with a romanized name ex. Yamamoto Sanae +*JapaneseApi* | [**japaneseNameMatchBatch**](docs/JapaneseApi.md#japaneseNameMatchBatch) | **POST** /api2/json/japaneseNameMatchBatch | Return a score for matching a list of Japanese names in KANJI ex. 山本 早苗 with romanized names ex. Yamamoto Sanae +*JapaneseApi* | [**japaneseNameMatchFeedbackLoop**](docs/JapaneseApi.md#japaneseNameMatchFeedbackLoop) | **GET** /api2/json/japaneseNameMatchFeedbackLoop/{japaneseSurnameLatin}/{japaneseGivenNameLatin}/{japaneseName} | [CREDITS 1 UNIT] Feedback loop to better perform matching Japanese name in KANJI ex. 山本 早苗 with a romanized name ex. Yamamoto Sanae +*JapaneseApi* | [**parseJapaneseName**](docs/JapaneseApi.md#parseJapaneseName) | **GET** /api2/json/parseJapaneseName/{japaneseName} | Infer the likely first/last name structure of a name, ex. 山本 早苗 or Yamamoto Sanae +*JapaneseApi* | [**parseJapaneseNameBatch**](docs/JapaneseApi.md#parseJapaneseNameBatch) | **POST** /api2/json/parseJapaneseNameBatch | Infer the likely first/last name structure of a name, ex. 山本 早苗 or Yamamoto Sanae +*SocialApi* | [**phoneCode**](docs/SocialApi.md#phoneCode) | **GET** /api2/json/phoneCode/{firstName}/{lastName}/{phoneNumber} | [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, given a personal name and formatted / unformatted phone number. +*SocialApi* | [**phoneCodeBatch**](docs/SocialApi.md#phoneCodeBatch) | **POST** /api2/json/phoneCodeBatch | [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, of up to 100 personal names, detecting automatically the local context given a name and formatted / unformatted phone number. +*SocialApi* | [**phoneCodeGeo**](docs/SocialApi.md#phoneCodeGeo) | **GET** /api2/json/phoneCodeGeo/{firstName}/{lastName}/{phoneNumber}/{countryIso2} | [USES 11 UNITS PER NAME] Infer the likely phone prefix, given a personal name and formatted / unformatted phone number, with a local context (ISO2 country of residence). +*SocialApi* | [**phoneCodeGeoBatch**](docs/SocialApi.md#phoneCodeGeoBatch) | **POST** /api2/json/phoneCodeGeoBatch | [USES 11 UNITS PER NAME] Infer the likely country and phone prefix, of up to 100 personal names, with a local context (ISO2 country of residence). +*SocialApi* | [**phoneCodeGeoFeedbackLoop**](docs/SocialApi.md#phoneCodeGeoFeedbackLoop) | **GET** /api2/json/phoneCodeGeoFeedbackLoop/{firstName}/{lastName}/{phoneNumber}/{phoneNumberE164}/{countryIso2} | [CREDITS 1 UNIT] Feedback loop to better infer the likely phone prefix, given a personal name and formatted / unformatted phone number, with a local context (ISO2 country of residence). + + +## Documentation for Models + + - [APIBillingPeriodUsageOut](docs/APIBillingPeriodUsageOut.md) + - [APIClassifierOut](docs/APIClassifierOut.md) + - [APIClassifierTaxonomyOut](docs/APIClassifierTaxonomyOut.md) + - [APIClassifiersStatusOut](docs/APIClassifiersStatusOut.md) + - [APICounterV2Out](docs/APICounterV2Out.md) + - [APIKeyOut](docs/APIKeyOut.md) + - [APIPeriodUsageOut](docs/APIPeriodUsageOut.md) + - [APIPlanOut](docs/APIPlanOut.md) + - [APIPlanSubscriptionOut](docs/APIPlanSubscriptionOut.md) + - [APIPlansOut](docs/APIPlansOut.md) + - [APIServiceOut](docs/APIServiceOut.md) + - [APIServicesOut](docs/APIServicesOut.md) + - [APIUsageAggregatedOut](docs/APIUsageAggregatedOut.md) + - [BatchFirstLastNameDiasporaedOut](docs/BatchFirstLastNameDiasporaedOut.md) + - [BatchFirstLastNameGenderIn](docs/BatchFirstLastNameGenderIn.md) + - [BatchFirstLastNameGenderedOut](docs/BatchFirstLastNameGenderedOut.md) + - [BatchFirstLastNameGeoIn](docs/BatchFirstLastNameGeoIn.md) + - [BatchFirstLastNameGeoZippedIn](docs/BatchFirstLastNameGeoZippedIn.md) + - [BatchFirstLastNameIn](docs/BatchFirstLastNameIn.md) + - [BatchFirstLastNameOriginedOut](docs/BatchFirstLastNameOriginedOut.md) + - [BatchFirstLastNamePhoneCodedOut](docs/BatchFirstLastNamePhoneCodedOut.md) + - [BatchFirstLastNamePhoneNumberGeoIn](docs/BatchFirstLastNamePhoneNumberGeoIn.md) + - [BatchFirstLastNamePhoneNumberIn](docs/BatchFirstLastNamePhoneNumberIn.md) + - [BatchFirstLastNameUSRaceEthnicityOut](docs/BatchFirstLastNameUSRaceEthnicityOut.md) + - [BatchMatchPersonalFirstLastNameIn](docs/BatchMatchPersonalFirstLastNameIn.md) + - [BatchNameMatchCandidatesOut](docs/BatchNameMatchCandidatesOut.md) + - [BatchNameMatchedOut](docs/BatchNameMatchedOut.md) + - [BatchParsedFullNameGeoIn](docs/BatchParsedFullNameGeoIn.md) + - [BatchParsedFullNameIn](docs/BatchParsedFullNameIn.md) + - [BatchPersonalNameGenderedOut](docs/BatchPersonalNameGenderedOut.md) + - [BatchPersonalNameGeoIn](docs/BatchPersonalNameGeoIn.md) + - [BatchPersonalNameGeoOut](docs/BatchPersonalNameGeoOut.md) + - [BatchPersonalNameIn](docs/BatchPersonalNameIn.md) + - [BatchPersonalNameParsedOut](docs/BatchPersonalNameParsedOut.md) + - [BillingHistoryOut](docs/BillingHistoryOut.md) + - [BillingInfoInOut](docs/BillingInfoInOut.md) + - [CacheMetricsOut](docs/CacheMetricsOut.md) + - [ClassifierMetricsOut](docs/ClassifierMetricsOut.md) + - [CurrenciesOut](docs/CurrenciesOut.md) + - [DeployUIOut](docs/DeployUIOut.md) + - [ExpectedClassMetricsOut](docs/ExpectedClassMetricsOut.md) + - [FeedbackLoopOut](docs/FeedbackLoopOut.md) + - [FirstLastNameDiasporaedOut](docs/FirstLastNameDiasporaedOut.md) + - [FirstLastNameGenderIn](docs/FirstLastNameGenderIn.md) + - [FirstLastNameGenderedOut](docs/FirstLastNameGenderedOut.md) + - [FirstLastNameGeoIn](docs/FirstLastNameGeoIn.md) + - [FirstLastNameGeoZippedIn](docs/FirstLastNameGeoZippedIn.md) + - [FirstLastNameIn](docs/FirstLastNameIn.md) + - [FirstLastNameOriginedOut](docs/FirstLastNameOriginedOut.md) + - [FirstLastNameOut](docs/FirstLastNameOut.md) + - [FirstLastNamePhoneCodedOut](docs/FirstLastNamePhoneCodedOut.md) + - [FirstLastNamePhoneNumberGeoIn](docs/FirstLastNamePhoneNumberGeoIn.md) + - [FirstLastNamePhoneNumberIn](docs/FirstLastNamePhoneNumberIn.md) + - [FirstLastNameUSRaceEthnicityOut](docs/FirstLastNameUSRaceEthnicityOut.md) + - [InlineObject](docs/InlineObject.md) + - [InvoiceItemOut](docs/InvoiceItemOut.md) + - [InvoiceOut](docs/InvoiceOut.md) + - [MatchPersonalFirstLastNameIn](docs/MatchPersonalFirstLastNameIn.md) + - [NamSorCounterOut](docs/NamSorCounterOut.md) + - [NameMatchCandidateOut](docs/NameMatchCandidateOut.md) + - [NameMatchCandidatesOut](docs/NameMatchCandidatesOut.md) + - [NameMatchedOut](docs/NameMatchedOut.md) + - [ParsedFullNameGeoIn](docs/ParsedFullNameGeoIn.md) + - [ParsedFullNameIn](docs/ParsedFullNameIn.md) + - [PersonalNameGenderedOut](docs/PersonalNameGenderedOut.md) + - [PersonalNameGeoIn](docs/PersonalNameGeoIn.md) + - [PersonalNameGeoOut](docs/PersonalNameGeoOut.md) + - [PersonalNameIn](docs/PersonalNameIn.md) + - [PersonalNameParsedOut](docs/PersonalNameParsedOut.md) + - [ProperNounCategorizedOut](docs/ProperNounCategorizedOut.md) + - [RomanizedNameOut](docs/RomanizedNameOut.md) + - [SoftwareVersionOut](docs/SoftwareVersionOut.md) + - [SourceDetailedMetricsOut](docs/SourceDetailedMetricsOut.md) + - [SourceMetricsOut](docs/SourceMetricsOut.md) + - [StripeCardOut](docs/StripeCardOut.md) + - [StripeCustomerOut](docs/StripeCustomerOut.md) + - [SystemMetricsOut](docs/SystemMetricsOut.md) + - [UserInfoOut](docs/UserInfoOut.md) + + +## Recommendation + +It's recommended to create an instance of `ApiClient` per thread in a multithreaded environment to avoid any potential issues. + +## Author + +contact@namsor.com + diff --git a/pom.xml b/pom.xml index 46e8f471..b3e7e11c 100644 --- a/pom.xml +++ b/pom.xml @@ -6,8 +6,9 @@ jar namsor-sdk2 2.0.12 - https://github.com/openapitools/openapi-generator - OpenAPI Java + + https://github.com/namsor/namsor-java-sdk2/ + NamSor OpenAPI Java Client SDK scm:git:git@github.com:openapitools/openapi-generator.git scm:git:git@github.com:openapitools/openapi-generator.git @@ -23,6 +24,13 @@ + + + NamSor + contact@namsor.com + NamSor + https://www.namsor.com/ + OpenAPI team@openapitools.org @@ -30,7 +38,12 @@ http://openapitools.org - + + + ossrh + https://oss.sonatype.org/content/repositories/snapshots + + @@ -159,19 +172,55 @@ - + + + org.apache.maven.plugins + maven-gpg-plugin + 1.5 + + + C2DED53433BC8503EB737AF7CBCEA4F2104CD621 + + + + sign-artifacts + verify + + sign + + + + + + + + org.sonatype.plugins + nexus-staging-maven-plugin + 1.6.7 + true + + ossrh + https://oss.sonatype.org/ + true + + + - sign-artifacts + sign-artifacts-deploy org.apache.maven.plugins maven-gpg-plugin 1.5 + + + C2DED53433BC8503EB737AF7CBCEA4F2104CD621 + sign-artifacts diff --git a/pom.xml.bak b/pom.xml.bak new file mode 100644 index 00000000..46e8f471 --- /dev/null +++ b/pom.xml.bak @@ -0,0 +1,253 @@ + + 4.0.0 + com.namsor + namsor-sdk2 + jar + namsor-sdk2 + 2.0.12 + https://github.com/openapitools/openapi-generator + OpenAPI Java + + scm:git:git@github.com:openapitools/openapi-generator.git + scm:git:git@github.com:openapitools/openapi-generator.git + https://github.com/openapitools/openapi-generator + + + + + Unlicense + https://v2.namsor.com/NamSorAPIv2/assets/pdf/201803_NamSor_API_Terms_v007.pdf + repo + + + + + + OpenAPI + team@openapitools.org + OpenAPI + http://openapitools.org + + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M1 + + + enforce-maven + + enforce + + + + + 2.2.0 + + + + + + + + org.apache.maven.plugins + maven-surefire-plugin + 2.12 + + + + loggerPath + conf/log4j.properties + + + -Xms512m -Xmx1500m + methods + pertest + + + + maven-dependency-plugin + + + package + + copy-dependencies + + + ${project.build.directory}/lib + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + 2.2 + + + + jar + test-jar + + + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 1.10 + + + add_sources + generate-sources + + add-source + + + + + src/main/java + + + + + add_test_sources + generate-test-sources + + add-test-source + + + + + src/test/java + + + + + + + org.apache.maven.plugins + maven-javadoc-plugin + 2.10.4 + + + attach-javadocs + + jar + + + + + + org.apache.maven.plugins + maven-source-plugin + 2.2.1 + + + attach-sources + + jar-no-fork + + + + + + + + + + sign-artifacts + + + + org.apache.maven.plugins + maven-gpg-plugin + 1.5 + + + sign-artifacts + verify + + sign + + + + + + + + + + + + io.swagger + swagger-annotations + ${swagger-core-version} + + + com.squareup.okhttp + okhttp + ${okhttp-version} + + + com.squareup.okhttp + logging-interceptor + ${okhttp-version} + + + com.google.code.gson + gson + ${gson-version} + + + io.gsonfire + gson-fire + ${gson-fire-version} + + + org.apache.oltu.oauth2 + org.apache.oltu.oauth2.client + 1.0.1 + + + org.apache.commons + commons-lang3 + ${commons-lang3-version} + + + org.threeten + threetenbp + ${threetenbp-version} + + + + junit + junit + ${junit-version} + test + + + + 1.7 + ${java.version} + ${java.version} + 1.8.0 + 1.5.18 + 2.7.5 + 2.8.1 + 3.8.1 + 1.3.5 + 1.0.0 + 4.12 + UTF-8 + + diff --git a/target/apidocs/com/namsor/sdk2/api/AdminApi.html b/target/apidocs/com/namsor/sdk2/api/AdminApi.html index a5a527c2..0732cbf7 100644 --- a/target/apidocs/com/namsor/sdk2/api/AdminApi.html +++ b/target/apidocs/com/namsor/sdk2/api/AdminApi.html @@ -2,7 +2,7 @@ - + AdminApi (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/api/ChineseApi.html b/target/apidocs/com/namsor/sdk2/api/ChineseApi.html index 9bb565bc..2ac8b037 100644 --- a/target/apidocs/com/namsor/sdk2/api/ChineseApi.html +++ b/target/apidocs/com/namsor/sdk2/api/ChineseApi.html @@ -2,7 +2,7 @@ - + ChineseApi (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/api/PersonalApi.html b/target/apidocs/com/namsor/sdk2/api/PersonalApi.html index 712f34cf..b5827d93 100644 --- a/target/apidocs/com/namsor/sdk2/api/PersonalApi.html +++ b/target/apidocs/com/namsor/sdk2/api/PersonalApi.html @@ -2,7 +2,7 @@ - + PersonalApi (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/api/SocialApi.html b/target/apidocs/com/namsor/sdk2/api/SocialApi.html index 9279a4dd..37325018 100644 --- a/target/apidocs/com/namsor/sdk2/api/SocialApi.html +++ b/target/apidocs/com/namsor/sdk2/api/SocialApi.html @@ -2,7 +2,7 @@ - + SocialApi (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/api/class-use/AdminApi.html b/target/apidocs/com/namsor/sdk2/api/class-use/AdminApi.html index 6219d70e..46d7a305 100644 --- a/target/apidocs/com/namsor/sdk2/api/class-use/AdminApi.html +++ b/target/apidocs/com/namsor/sdk2/api/class-use/AdminApi.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.api.AdminApi (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/api/class-use/ChineseApi.html b/target/apidocs/com/namsor/sdk2/api/class-use/ChineseApi.html index 02e80ffe..bc22cf3d 100644 --- a/target/apidocs/com/namsor/sdk2/api/class-use/ChineseApi.html +++ b/target/apidocs/com/namsor/sdk2/api/class-use/ChineseApi.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.api.ChineseApi (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/api/class-use/PersonalApi.html b/target/apidocs/com/namsor/sdk2/api/class-use/PersonalApi.html index c3356cb2..7904e594 100644 --- a/target/apidocs/com/namsor/sdk2/api/class-use/PersonalApi.html +++ b/target/apidocs/com/namsor/sdk2/api/class-use/PersonalApi.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.api.PersonalApi (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/api/class-use/SocialApi.html b/target/apidocs/com/namsor/sdk2/api/class-use/SocialApi.html index 12a133ec..ee032035 100644 --- a/target/apidocs/com/namsor/sdk2/api/class-use/SocialApi.html +++ b/target/apidocs/com/namsor/sdk2/api/class-use/SocialApi.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.api.SocialApi (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/api/package-summary.html b/target/apidocs/com/namsor/sdk2/api/package-summary.html index 758762c9..1956c389 100644 --- a/target/apidocs/com/namsor/sdk2/api/package-summary.html +++ b/target/apidocs/com/namsor/sdk2/api/package-summary.html @@ -2,7 +2,7 @@ - + com.namsor.sdk2.api (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/api/package-tree.html b/target/apidocs/com/namsor/sdk2/api/package-tree.html index 5e219991..9f32f2e2 100644 --- a/target/apidocs/com/namsor/sdk2/api/package-tree.html +++ b/target/apidocs/com/namsor/sdk2/api/package-tree.html @@ -2,7 +2,7 @@ - + com.namsor.sdk2.api Class Hierarchy (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/api/package-use.html b/target/apidocs/com/namsor/sdk2/api/package-use.html index b17c99d0..65803446 100644 --- a/target/apidocs/com/namsor/sdk2/api/package-use.html +++ b/target/apidocs/com/namsor/sdk2/api/package-use.html @@ -2,7 +2,7 @@ - + Uses of Package com.namsor.sdk2.api (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/ApiCallback.html b/target/apidocs/com/namsor/sdk2/invoke/ApiCallback.html index 10946f34..caeb3954 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/ApiCallback.html +++ b/target/apidocs/com/namsor/sdk2/invoke/ApiCallback.html @@ -2,7 +2,7 @@ - + ApiCallback (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/ApiClient.html b/target/apidocs/com/namsor/sdk2/invoke/ApiClient.html index e1528340..6a7d8fbf 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/ApiClient.html +++ b/target/apidocs/com/namsor/sdk2/invoke/ApiClient.html @@ -2,7 +2,7 @@ - + ApiClient (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/ApiException.html b/target/apidocs/com/namsor/sdk2/invoke/ApiException.html index 01858752..dc6c660a 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/ApiException.html +++ b/target/apidocs/com/namsor/sdk2/invoke/ApiException.html @@ -2,7 +2,7 @@ - + ApiException (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/ApiResponse.html b/target/apidocs/com/namsor/sdk2/invoke/ApiResponse.html index 7f7e4132..2f025aac 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/ApiResponse.html +++ b/target/apidocs/com/namsor/sdk2/invoke/ApiResponse.html @@ -2,7 +2,7 @@ - + ApiResponse (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/Configuration.html b/target/apidocs/com/namsor/sdk2/invoke/Configuration.html index 65023bc5..9c2bdde9 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/Configuration.html +++ b/target/apidocs/com/namsor/sdk2/invoke/Configuration.html @@ -2,7 +2,7 @@ - + Configuration (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/JSON.ByteArrayAdapter.html b/target/apidocs/com/namsor/sdk2/invoke/JSON.ByteArrayAdapter.html index c56daa6d..b0189457 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/JSON.ByteArrayAdapter.html +++ b/target/apidocs/com/namsor/sdk2/invoke/JSON.ByteArrayAdapter.html @@ -2,7 +2,7 @@ - + JSON.ByteArrayAdapter (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/JSON.DateTypeAdapter.html b/target/apidocs/com/namsor/sdk2/invoke/JSON.DateTypeAdapter.html index 4dafcc0a..4854dfde 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/JSON.DateTypeAdapter.html +++ b/target/apidocs/com/namsor/sdk2/invoke/JSON.DateTypeAdapter.html @@ -2,7 +2,7 @@ - + JSON.DateTypeAdapter (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/JSON.LocalDateTypeAdapter.html b/target/apidocs/com/namsor/sdk2/invoke/JSON.LocalDateTypeAdapter.html index cec9d14d..41bf72f0 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/JSON.LocalDateTypeAdapter.html +++ b/target/apidocs/com/namsor/sdk2/invoke/JSON.LocalDateTypeAdapter.html @@ -2,7 +2,7 @@ - + JSON.LocalDateTypeAdapter (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/JSON.OffsetDateTimeTypeAdapter.html b/target/apidocs/com/namsor/sdk2/invoke/JSON.OffsetDateTimeTypeAdapter.html index b69d175f..50ed63d6 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/JSON.OffsetDateTimeTypeAdapter.html +++ b/target/apidocs/com/namsor/sdk2/invoke/JSON.OffsetDateTimeTypeAdapter.html @@ -2,7 +2,7 @@ - + JSON.OffsetDateTimeTypeAdapter (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/JSON.SqlDateTypeAdapter.html b/target/apidocs/com/namsor/sdk2/invoke/JSON.SqlDateTypeAdapter.html index 806e8960..2df8fbef 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/JSON.SqlDateTypeAdapter.html +++ b/target/apidocs/com/namsor/sdk2/invoke/JSON.SqlDateTypeAdapter.html @@ -2,7 +2,7 @@ - + JSON.SqlDateTypeAdapter (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/JSON.html b/target/apidocs/com/namsor/sdk2/invoke/JSON.html index b88916f5..f2b8bc80 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/JSON.html +++ b/target/apidocs/com/namsor/sdk2/invoke/JSON.html @@ -2,7 +2,7 @@ - + JSON (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/Pair.html b/target/apidocs/com/namsor/sdk2/invoke/Pair.html index e69c96a5..84b8e229 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/Pair.html +++ b/target/apidocs/com/namsor/sdk2/invoke/Pair.html @@ -2,7 +2,7 @@ - + Pair (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/ProgressRequestBody.ProgressRequestListener.html b/target/apidocs/com/namsor/sdk2/invoke/ProgressRequestBody.ProgressRequestListener.html index 02ad33c3..d48f3348 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/ProgressRequestBody.ProgressRequestListener.html +++ b/target/apidocs/com/namsor/sdk2/invoke/ProgressRequestBody.ProgressRequestListener.html @@ -2,7 +2,7 @@ - + ProgressRequestBody.ProgressRequestListener (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/ProgressRequestBody.html b/target/apidocs/com/namsor/sdk2/invoke/ProgressRequestBody.html index 7abff7fe..e20f432f 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/ProgressRequestBody.html +++ b/target/apidocs/com/namsor/sdk2/invoke/ProgressRequestBody.html @@ -2,7 +2,7 @@ - + ProgressRequestBody (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/ProgressResponseBody.ProgressListener.html b/target/apidocs/com/namsor/sdk2/invoke/ProgressResponseBody.ProgressListener.html index dff7d500..bff7c329 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/ProgressResponseBody.ProgressListener.html +++ b/target/apidocs/com/namsor/sdk2/invoke/ProgressResponseBody.ProgressListener.html @@ -2,7 +2,7 @@ - + ProgressResponseBody.ProgressListener (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/ProgressResponseBody.html b/target/apidocs/com/namsor/sdk2/invoke/ProgressResponseBody.html index b272a746..f26f3b16 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/ProgressResponseBody.html +++ b/target/apidocs/com/namsor/sdk2/invoke/ProgressResponseBody.html @@ -2,7 +2,7 @@ - + ProgressResponseBody (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/StringUtil.html b/target/apidocs/com/namsor/sdk2/invoke/StringUtil.html index 8cdae5ad..01f3ef6e 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/StringUtil.html +++ b/target/apidocs/com/namsor/sdk2/invoke/StringUtil.html @@ -2,7 +2,7 @@ - + StringUtil (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/auth/ApiKeyAuth.html b/target/apidocs/com/namsor/sdk2/invoke/auth/ApiKeyAuth.html index d1790a9b..264db49b 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/auth/ApiKeyAuth.html +++ b/target/apidocs/com/namsor/sdk2/invoke/auth/ApiKeyAuth.html @@ -2,7 +2,7 @@ - + ApiKeyAuth (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/auth/Authentication.html b/target/apidocs/com/namsor/sdk2/invoke/auth/Authentication.html index 83384f2d..94ce421c 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/auth/Authentication.html +++ b/target/apidocs/com/namsor/sdk2/invoke/auth/Authentication.html @@ -2,7 +2,7 @@ - + Authentication (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/auth/HttpBasicAuth.html b/target/apidocs/com/namsor/sdk2/invoke/auth/HttpBasicAuth.html index 9b11f4a7..56a441bd 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/auth/HttpBasicAuth.html +++ b/target/apidocs/com/namsor/sdk2/invoke/auth/HttpBasicAuth.html @@ -2,7 +2,7 @@ - + HttpBasicAuth (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/auth/OAuth.html b/target/apidocs/com/namsor/sdk2/invoke/auth/OAuth.html index 24cd3bca..ee9fe229 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/auth/OAuth.html +++ b/target/apidocs/com/namsor/sdk2/invoke/auth/OAuth.html @@ -2,7 +2,7 @@ - + OAuth (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/auth/OAuthFlow.html b/target/apidocs/com/namsor/sdk2/invoke/auth/OAuthFlow.html index 7b255304..b2ad63ba 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/auth/OAuthFlow.html +++ b/target/apidocs/com/namsor/sdk2/invoke/auth/OAuthFlow.html @@ -2,7 +2,7 @@ - + OAuthFlow (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/auth/OAuthOkHttpClient.html b/target/apidocs/com/namsor/sdk2/invoke/auth/OAuthOkHttpClient.html index 3fa3e7f5..c50a9142 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/auth/OAuthOkHttpClient.html +++ b/target/apidocs/com/namsor/sdk2/invoke/auth/OAuthOkHttpClient.html @@ -2,7 +2,7 @@ - + OAuthOkHttpClient (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/auth/RetryingOAuth.html b/target/apidocs/com/namsor/sdk2/invoke/auth/RetryingOAuth.html index 43737066..43fa5a43 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/auth/RetryingOAuth.html +++ b/target/apidocs/com/namsor/sdk2/invoke/auth/RetryingOAuth.html @@ -2,7 +2,7 @@ - + RetryingOAuth (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/ApiKeyAuth.html b/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/ApiKeyAuth.html index 894a5f42..162d6a5e 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/ApiKeyAuth.html +++ b/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/ApiKeyAuth.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.invoke.auth.ApiKeyAuth (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/Authentication.html b/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/Authentication.html index 53196da8..87ddd529 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/Authentication.html +++ b/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/Authentication.html @@ -2,7 +2,7 @@ - + Uses of Interface com.namsor.sdk2.invoke.auth.Authentication (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/HttpBasicAuth.html b/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/HttpBasicAuth.html index 21dbfb5d..a82a9cb9 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/HttpBasicAuth.html +++ b/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/HttpBasicAuth.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.invoke.auth.HttpBasicAuth (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/OAuth.html b/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/OAuth.html index 45b2401e..77013507 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/OAuth.html +++ b/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/OAuth.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.invoke.auth.OAuth (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/OAuthFlow.html b/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/OAuthFlow.html index 5fc70912..555ff21a 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/OAuthFlow.html +++ b/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/OAuthFlow.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.invoke.auth.OAuthFlow (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/OAuthOkHttpClient.html b/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/OAuthOkHttpClient.html index c834800d..9d3e9c51 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/OAuthOkHttpClient.html +++ b/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/OAuthOkHttpClient.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.invoke.auth.OAuthOkHttpClient (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/RetryingOAuth.html b/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/RetryingOAuth.html index ea1cb37a..71d75764 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/RetryingOAuth.html +++ b/target/apidocs/com/namsor/sdk2/invoke/auth/class-use/RetryingOAuth.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.invoke.auth.RetryingOAuth (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/auth/package-summary.html b/target/apidocs/com/namsor/sdk2/invoke/auth/package-summary.html index ec3611f7..8d4d5dee 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/auth/package-summary.html +++ b/target/apidocs/com/namsor/sdk2/invoke/auth/package-summary.html @@ -2,7 +2,7 @@ - + com.namsor.sdk2.invoke.auth (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/auth/package-tree.html b/target/apidocs/com/namsor/sdk2/invoke/auth/package-tree.html index 138203a5..308701e2 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/auth/package-tree.html +++ b/target/apidocs/com/namsor/sdk2/invoke/auth/package-tree.html @@ -2,7 +2,7 @@ - + com.namsor.sdk2.invoke.auth Class Hierarchy (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/auth/package-use.html b/target/apidocs/com/namsor/sdk2/invoke/auth/package-use.html index e6375a63..ba487adf 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/auth/package-use.html +++ b/target/apidocs/com/namsor/sdk2/invoke/auth/package-use.html @@ -2,7 +2,7 @@ - + Uses of Package com.namsor.sdk2.invoke.auth (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/class-use/ApiCallback.html b/target/apidocs/com/namsor/sdk2/invoke/class-use/ApiCallback.html index c9a7b395..2bf2cf55 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/class-use/ApiCallback.html +++ b/target/apidocs/com/namsor/sdk2/invoke/class-use/ApiCallback.html @@ -2,7 +2,7 @@ - + Uses of Interface com.namsor.sdk2.invoke.ApiCallback (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/class-use/ApiClient.html b/target/apidocs/com/namsor/sdk2/invoke/class-use/ApiClient.html index 36c8d453..6e5f27ad 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/class-use/ApiClient.html +++ b/target/apidocs/com/namsor/sdk2/invoke/class-use/ApiClient.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.invoke.ApiClient (namsor-sdk2 2.0.12 API) @@ -109,15 +109,15 @@

Uses of ApiClient -JapaneseApi.getApiClient()  +SocialApi.getApiClient()  ApiClient -AdminApi.getApiClient()  +PersonalApi.getApiClient()  ApiClient -ChineseApi.getApiClient()  +JapaneseApi.getApiClient()  ApiClient @@ -125,11 +125,11 @@

Uses of ApiClient -SocialApi.getApiClient()  +ChineseApi.getApiClient()  ApiClient -PersonalApi.getApiClient()  +AdminApi.getApiClient()  @@ -142,15 +142,15 @@

Uses of void -JapaneseApi.setApiClient(ApiClient apiClient)  +SocialApi.setApiClient(ApiClient apiClient)  void -AdminApi.setApiClient(ApiClient apiClient)  +PersonalApi.setApiClient(ApiClient apiClient)  void -ChineseApi.setApiClient(ApiClient apiClient)  +JapaneseApi.setApiClient(ApiClient apiClient)  void @@ -158,11 +158,11 @@

Uses of void -SocialApi.setApiClient(ApiClient apiClient)  +ChineseApi.setApiClient(ApiClient apiClient)  void -PersonalApi.setApiClient(ApiClient apiClient)  +AdminApi.setApiClient(ApiClient apiClient)  diff --git a/target/apidocs/com/namsor/sdk2/invoke/class-use/ApiException.html b/target/apidocs/com/namsor/sdk2/invoke/class-use/ApiException.html index 8ec38867..6a64a1c1 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/class-use/ApiException.html +++ b/target/apidocs/com/namsor/sdk2/invoke/class-use/ApiException.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.invoke.ApiException (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/class-use/ApiResponse.html b/target/apidocs/com/namsor/sdk2/invoke/class-use/ApiResponse.html index 33efea0e..6f8138c3 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/class-use/ApiResponse.html +++ b/target/apidocs/com/namsor/sdk2/invoke/class-use/ApiResponse.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.invoke.ApiResponse (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/class-use/Configuration.html b/target/apidocs/com/namsor/sdk2/invoke/class-use/Configuration.html index 96f1fc25..cff3f105 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/class-use/Configuration.html +++ b/target/apidocs/com/namsor/sdk2/invoke/class-use/Configuration.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.invoke.Configuration (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.ByteArrayAdapter.html b/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.ByteArrayAdapter.html index 1229f61f..549e0e4e 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.ByteArrayAdapter.html +++ b/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.ByteArrayAdapter.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.invoke.JSON.ByteArrayAdapter (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.DateTypeAdapter.html b/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.DateTypeAdapter.html index a15c44f5..07a8b5ca 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.DateTypeAdapter.html +++ b/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.DateTypeAdapter.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.invoke.JSON.DateTypeAdapter (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.LocalDateTypeAdapter.html b/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.LocalDateTypeAdapter.html index 1ab57152..23faaf61 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.LocalDateTypeAdapter.html +++ b/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.LocalDateTypeAdapter.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.invoke.JSON.LocalDateTypeAdapter (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.OffsetDateTimeTypeAdapter.html b/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.OffsetDateTimeTypeAdapter.html index b9331edc..9b809119 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.OffsetDateTimeTypeAdapter.html +++ b/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.OffsetDateTimeTypeAdapter.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.invoke.JSON.OffsetDateTimeTypeAdapter (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.SqlDateTypeAdapter.html b/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.SqlDateTypeAdapter.html index a0b10c24..6db17af1 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.SqlDateTypeAdapter.html +++ b/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.SqlDateTypeAdapter.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.invoke.JSON.SqlDateTypeAdapter (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.html b/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.html index 4a76f4a9..777e7f97 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.html +++ b/target/apidocs/com/namsor/sdk2/invoke/class-use/JSON.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.invoke.JSON (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/class-use/Pair.html b/target/apidocs/com/namsor/sdk2/invoke/class-use/Pair.html index 83554f9f..50216ea8 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/class-use/Pair.html +++ b/target/apidocs/com/namsor/sdk2/invoke/class-use/Pair.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.invoke.Pair (namsor-sdk2 2.0.12 API) @@ -227,7 +227,7 @@

Uses of void -ApiKeyAuth.applyToParams(List<Pair> queryParams, +RetryingOAuth.applyToParams(List<Pair> queryParams, Map<String,String> headerParams)  @@ -237,21 +237,21 @@

Uses of void -RetryingOAuth.applyToParams(List<Pair> queryParams, - Map<String,String> headerParams)  - - -void HttpBasicAuth.applyToParams(List<Pair> queryParams, Map<String,String> headerParams)  - + void Authentication.applyToParams(List<Pair> queryParams, Map<String,String> headerParams)
Apply authentication settings to header and query params.
+ +void +ApiKeyAuth.applyToParams(List<Pair> queryParams, + Map<String,String> headerParams)  + diff --git a/target/apidocs/com/namsor/sdk2/invoke/class-use/ProgressRequestBody.ProgressRequestListener.html b/target/apidocs/com/namsor/sdk2/invoke/class-use/ProgressRequestBody.ProgressRequestListener.html index 3970529e..edb74fbf 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/class-use/ProgressRequestBody.ProgressRequestListener.html +++ b/target/apidocs/com/namsor/sdk2/invoke/class-use/ProgressRequestBody.ProgressRequestListener.html @@ -2,7 +2,7 @@ - + Uses of Interface com.namsor.sdk2.invoke.ProgressRequestBody.ProgressRequestListener (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/class-use/ProgressRequestBody.html b/target/apidocs/com/namsor/sdk2/invoke/class-use/ProgressRequestBody.html index 12e8ee33..533d5d43 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/class-use/ProgressRequestBody.html +++ b/target/apidocs/com/namsor/sdk2/invoke/class-use/ProgressRequestBody.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.invoke.ProgressRequestBody (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/class-use/ProgressResponseBody.ProgressListener.html b/target/apidocs/com/namsor/sdk2/invoke/class-use/ProgressResponseBody.ProgressListener.html index fc6621b2..d0387ff1 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/class-use/ProgressResponseBody.ProgressListener.html +++ b/target/apidocs/com/namsor/sdk2/invoke/class-use/ProgressResponseBody.ProgressListener.html @@ -2,7 +2,7 @@ - + Uses of Interface com.namsor.sdk2.invoke.ProgressResponseBody.ProgressListener (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/class-use/ProgressResponseBody.html b/target/apidocs/com/namsor/sdk2/invoke/class-use/ProgressResponseBody.html index 059abc77..429ec703 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/class-use/ProgressResponseBody.html +++ b/target/apidocs/com/namsor/sdk2/invoke/class-use/ProgressResponseBody.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.invoke.ProgressResponseBody (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/class-use/StringUtil.html b/target/apidocs/com/namsor/sdk2/invoke/class-use/StringUtil.html index 7025bad9..928fea1b 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/class-use/StringUtil.html +++ b/target/apidocs/com/namsor/sdk2/invoke/class-use/StringUtil.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.invoke.StringUtil (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/package-summary.html b/target/apidocs/com/namsor/sdk2/invoke/package-summary.html index efa7bf4f..f68d8833 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/package-summary.html +++ b/target/apidocs/com/namsor/sdk2/invoke/package-summary.html @@ -2,7 +2,7 @@ - + com.namsor.sdk2.invoke (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/package-tree.html b/target/apidocs/com/namsor/sdk2/invoke/package-tree.html index 82d8201f..d2db532b 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/package-tree.html +++ b/target/apidocs/com/namsor/sdk2/invoke/package-tree.html @@ -2,7 +2,7 @@ - + com.namsor.sdk2.invoke Class Hierarchy (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/invoke/package-use.html b/target/apidocs/com/namsor/sdk2/invoke/package-use.html index 7f75e6d2..338c863d 100644 --- a/target/apidocs/com/namsor/sdk2/invoke/package-use.html +++ b/target/apidocs/com/namsor/sdk2/invoke/package-use.html @@ -2,7 +2,7 @@ - + Uses of Package com.namsor.sdk2.invoke (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/APIBillingPeriodUsageOut.html b/target/apidocs/com/namsor/sdk2/model/APIBillingPeriodUsageOut.html index 661a0ba6..78a65a2e 100644 --- a/target/apidocs/com/namsor/sdk2/model/APIBillingPeriodUsageOut.html +++ b/target/apidocs/com/namsor/sdk2/model/APIBillingPeriodUsageOut.html @@ -2,7 +2,7 @@ - + APIBillingPeriodUsageOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/APICounterV2Out.html b/target/apidocs/com/namsor/sdk2/model/APICounterV2Out.html index c1bc6e11..3395b6c6 100644 --- a/target/apidocs/com/namsor/sdk2/model/APICounterV2Out.html +++ b/target/apidocs/com/namsor/sdk2/model/APICounterV2Out.html @@ -2,7 +2,7 @@ - + APICounterV2Out (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/APIKeyOut.html b/target/apidocs/com/namsor/sdk2/model/APIKeyOut.html index 8c6e268f..b9ea4a66 100644 --- a/target/apidocs/com/namsor/sdk2/model/APIKeyOut.html +++ b/target/apidocs/com/namsor/sdk2/model/APIKeyOut.html @@ -2,7 +2,7 @@ - + APIKeyOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/APIPeriodUsageOut.html b/target/apidocs/com/namsor/sdk2/model/APIPeriodUsageOut.html index 4aa623cb..ebfc13bf 100644 --- a/target/apidocs/com/namsor/sdk2/model/APIPeriodUsageOut.html +++ b/target/apidocs/com/namsor/sdk2/model/APIPeriodUsageOut.html @@ -2,7 +2,7 @@ - + APIPeriodUsageOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/APIPlanOut.html b/target/apidocs/com/namsor/sdk2/model/APIPlanOut.html index 668e2325..7e597bb9 100644 --- a/target/apidocs/com/namsor/sdk2/model/APIPlanOut.html +++ b/target/apidocs/com/namsor/sdk2/model/APIPlanOut.html @@ -2,7 +2,7 @@ - + APIPlanOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/APIPlanSubscriptionOut.html b/target/apidocs/com/namsor/sdk2/model/APIPlanSubscriptionOut.html index 493f24b4..c0832457 100644 --- a/target/apidocs/com/namsor/sdk2/model/APIPlanSubscriptionOut.html +++ b/target/apidocs/com/namsor/sdk2/model/APIPlanSubscriptionOut.html @@ -2,7 +2,7 @@ - + APIPlanSubscriptionOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/APIPlansOut.html b/target/apidocs/com/namsor/sdk2/model/APIPlansOut.html index 155326ec..bd68bd84 100644 --- a/target/apidocs/com/namsor/sdk2/model/APIPlansOut.html +++ b/target/apidocs/com/namsor/sdk2/model/APIPlansOut.html @@ -2,7 +2,7 @@ - + APIPlansOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/APIServiceOut.html b/target/apidocs/com/namsor/sdk2/model/APIServiceOut.html index 1bcfdd4d..c1f75f54 100644 --- a/target/apidocs/com/namsor/sdk2/model/APIServiceOut.html +++ b/target/apidocs/com/namsor/sdk2/model/APIServiceOut.html @@ -2,7 +2,7 @@ - + APIServiceOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/APIServicesOut.html b/target/apidocs/com/namsor/sdk2/model/APIServicesOut.html index 7be4afc9..70a2cad5 100644 --- a/target/apidocs/com/namsor/sdk2/model/APIServicesOut.html +++ b/target/apidocs/com/namsor/sdk2/model/APIServicesOut.html @@ -2,7 +2,7 @@ - + APIServicesOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/APIUsageAggregatedOut.html b/target/apidocs/com/namsor/sdk2/model/APIUsageAggregatedOut.html index c269f2ef..f20735b8 100644 --- a/target/apidocs/com/namsor/sdk2/model/APIUsageAggregatedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/APIUsageAggregatedOut.html @@ -2,7 +2,7 @@ - + APIUsageAggregatedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameDiasporaedOut.html b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameDiasporaedOut.html index 866f5140..6967d927 100644 --- a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameDiasporaedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameDiasporaedOut.html @@ -2,7 +2,7 @@ - + BatchFirstLastNameDiasporaedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameGenderIn.html b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameGenderIn.html index 769c2ef2..112ceaa4 100644 --- a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameGenderIn.html +++ b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameGenderIn.html @@ -2,7 +2,7 @@ - + BatchFirstLastNameGenderIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameGenderedOut.html b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameGenderedOut.html index 9616efd5..14555fdf 100644 --- a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameGenderedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameGenderedOut.html @@ -2,7 +2,7 @@ - + BatchFirstLastNameGenderedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameGeoIn.html b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameGeoIn.html index 67ed8a40..948bc6ff 100644 --- a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameGeoIn.html +++ b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameGeoIn.html @@ -2,7 +2,7 @@ - + BatchFirstLastNameGeoIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameGeoZippedIn.html b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameGeoZippedIn.html index ca0b2291..dd935f52 100644 --- a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameGeoZippedIn.html +++ b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameGeoZippedIn.html @@ -2,7 +2,7 @@ - + BatchFirstLastNameGeoZippedIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameIn.html b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameIn.html index 6904de44..de1bfcb9 100644 --- a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameIn.html +++ b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameIn.html @@ -2,7 +2,7 @@ - + BatchFirstLastNameIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameOriginedOut.html b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameOriginedOut.html index 901fc4c9..2da529af 100644 --- a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameOriginedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameOriginedOut.html @@ -2,7 +2,7 @@ - + BatchFirstLastNameOriginedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNamePhoneCodedOut.html b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNamePhoneCodedOut.html index 36f6f8b1..45bfe3ff 100644 --- a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNamePhoneCodedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNamePhoneCodedOut.html @@ -2,7 +2,7 @@ - + BatchFirstLastNamePhoneCodedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberGeoIn.html b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberGeoIn.html index f663c8a1..5910ca5a 100644 --- a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberGeoIn.html +++ b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberGeoIn.html @@ -2,7 +2,7 @@ - + BatchFirstLastNamePhoneNumberGeoIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberIn.html b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberIn.html index 5caff110..e3c8cdca 100644 --- a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberIn.html +++ b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNamePhoneNumberIn.html @@ -2,7 +2,7 @@ - + BatchFirstLastNamePhoneNumberIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameUSRaceEthnicityOut.html b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameUSRaceEthnicityOut.html index 1d1714da..e4236c49 100644 --- a/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameUSRaceEthnicityOut.html +++ b/target/apidocs/com/namsor/sdk2/model/BatchFirstLastNameUSRaceEthnicityOut.html @@ -2,7 +2,7 @@ - + BatchFirstLastNameUSRaceEthnicityOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/BatchNameMatchCandidatesOut.html b/target/apidocs/com/namsor/sdk2/model/BatchNameMatchCandidatesOut.html index 53c3a563..6a11d7cc 100644 --- a/target/apidocs/com/namsor/sdk2/model/BatchNameMatchCandidatesOut.html +++ b/target/apidocs/com/namsor/sdk2/model/BatchNameMatchCandidatesOut.html @@ -2,7 +2,7 @@ - + BatchNameMatchCandidatesOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/BatchParsedFullNameGeoIn.html b/target/apidocs/com/namsor/sdk2/model/BatchParsedFullNameGeoIn.html index 9f942794..08e69418 100644 --- a/target/apidocs/com/namsor/sdk2/model/BatchParsedFullNameGeoIn.html +++ b/target/apidocs/com/namsor/sdk2/model/BatchParsedFullNameGeoIn.html @@ -2,7 +2,7 @@ - + BatchParsedFullNameGeoIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/BatchParsedFullNameIn.html b/target/apidocs/com/namsor/sdk2/model/BatchParsedFullNameIn.html index ae953b14..f4a04535 100644 --- a/target/apidocs/com/namsor/sdk2/model/BatchParsedFullNameIn.html +++ b/target/apidocs/com/namsor/sdk2/model/BatchParsedFullNameIn.html @@ -2,7 +2,7 @@ - + BatchParsedFullNameIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/BatchPersonalNameGenderedOut.html b/target/apidocs/com/namsor/sdk2/model/BatchPersonalNameGenderedOut.html index 77f1c6a7..2d5d18f1 100644 --- a/target/apidocs/com/namsor/sdk2/model/BatchPersonalNameGenderedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/BatchPersonalNameGenderedOut.html @@ -2,7 +2,7 @@ - + BatchPersonalNameGenderedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/BatchPersonalNameGeoIn.html b/target/apidocs/com/namsor/sdk2/model/BatchPersonalNameGeoIn.html index 25937deb..8b52cae9 100644 --- a/target/apidocs/com/namsor/sdk2/model/BatchPersonalNameGeoIn.html +++ b/target/apidocs/com/namsor/sdk2/model/BatchPersonalNameGeoIn.html @@ -2,7 +2,7 @@ - + BatchPersonalNameGeoIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/BatchPersonalNameGeoOut.html b/target/apidocs/com/namsor/sdk2/model/BatchPersonalNameGeoOut.html index 8fa96a6c..b055f3d3 100644 --- a/target/apidocs/com/namsor/sdk2/model/BatchPersonalNameGeoOut.html +++ b/target/apidocs/com/namsor/sdk2/model/BatchPersonalNameGeoOut.html @@ -2,7 +2,7 @@ - + BatchPersonalNameGeoOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/BatchPersonalNameIn.html b/target/apidocs/com/namsor/sdk2/model/BatchPersonalNameIn.html index c7afa4cc..dd8a8e36 100644 --- a/target/apidocs/com/namsor/sdk2/model/BatchPersonalNameIn.html +++ b/target/apidocs/com/namsor/sdk2/model/BatchPersonalNameIn.html @@ -2,7 +2,7 @@ - + BatchPersonalNameIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/BatchPersonalNameParsedOut.html b/target/apidocs/com/namsor/sdk2/model/BatchPersonalNameParsedOut.html index eb083b52..83e2e725 100644 --- a/target/apidocs/com/namsor/sdk2/model/BatchPersonalNameParsedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/BatchPersonalNameParsedOut.html @@ -2,7 +2,7 @@ - + BatchPersonalNameParsedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/BillingHistoryOut.html b/target/apidocs/com/namsor/sdk2/model/BillingHistoryOut.html index 39141a38..5c193bca 100644 --- a/target/apidocs/com/namsor/sdk2/model/BillingHistoryOut.html +++ b/target/apidocs/com/namsor/sdk2/model/BillingHistoryOut.html @@ -2,7 +2,7 @@ - + BillingHistoryOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/BillingInfoInOut.html b/target/apidocs/com/namsor/sdk2/model/BillingInfoInOut.html index ece5cc18..4e20da5c 100644 --- a/target/apidocs/com/namsor/sdk2/model/BillingInfoInOut.html +++ b/target/apidocs/com/namsor/sdk2/model/BillingInfoInOut.html @@ -2,7 +2,7 @@ - + BillingInfoInOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/ClassifierMetricsOut.html b/target/apidocs/com/namsor/sdk2/model/ClassifierMetricsOut.html index 006b20e5..2bef7222 100644 --- a/target/apidocs/com/namsor/sdk2/model/ClassifierMetricsOut.html +++ b/target/apidocs/com/namsor/sdk2/model/ClassifierMetricsOut.html @@ -2,7 +2,7 @@ - + ClassifierMetricsOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/CurrenciesOut.html b/target/apidocs/com/namsor/sdk2/model/CurrenciesOut.html index d24340f8..616107b2 100644 --- a/target/apidocs/com/namsor/sdk2/model/CurrenciesOut.html +++ b/target/apidocs/com/namsor/sdk2/model/CurrenciesOut.html @@ -2,7 +2,7 @@ - + CurrenciesOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/DeployUIOut.html b/target/apidocs/com/namsor/sdk2/model/DeployUIOut.html deleted file mode 100644 index 1e9ec5bd..00000000 --- a/target/apidocs/com/namsor/sdk2/model/DeployUIOut.html +++ /dev/null @@ -1,463 +0,0 @@ - - - - - - -DeployUIOut (namsor-sdk2 2.0.11 API) - - - - - - - - - - - - -
-
com.namsor.sdk2.model
-

Class DeployUIOut

-
-
- -
-
    -
  • -
    -
    -
    @Generated(value="org.openapitools.codegen.languages.JavaClientCodegen",
    -           date="2020-11-01T10:54:33.640+01:00[Europe/Berlin]")
    -public class DeployUIOut
    -extends Object
    -
    DeployUIOut
    -
  • -
-
-
- -
-
-
    -
  • - - - -
      -
    • - - -

      Constructor Detail

      - - - -
        -
      • -

        DeployUIOut

        -
        public DeployUIOut()
        -
      • -
      -
    • -
    - -
      -
    • - - -

      Method Detail

      - - - - - - - -
        -
      • -

        getErrorMessage

        -
        public String getErrorMessage()
        -
        Get errorMessage
        -
        -
        Returns:
        -
        errorMessage
        -
        -
      • -
      - - - -
        -
      • -

        setErrorMessage

        -
        public void setErrorMessage(String errorMessage)
        -
      • -
      - - - - - - - -
        -
      • -

        getSucceeded

        -
        public Boolean getSucceeded()
        -
        Get succeeded
        -
        -
        Returns:
        -
        succeeded
        -
        -
      • -
      - - - -
        -
      • -

        setSucceeded

        -
        public void setSucceeded(Boolean succeeded)
        -
      • -
      - - - -
        -
      • -

        equals

        -
        public boolean equals(Object o)
        -
        -
        Overrides:
        -
        equals in class Object
        -
        -
      • -
      - - - -
        -
      • -

        hashCode

        -
        public int hashCode()
        -
        -
        Overrides:
        -
        hashCode in class Object
        -
        -
      • -
      - - - - -
    • -
    -
  • -
-
-
- - - - - -

Copyright © 2020. All rights reserved.

- - diff --git a/target/apidocs/com/namsor/sdk2/model/ExpectedClassMetricsOut.html b/target/apidocs/com/namsor/sdk2/model/ExpectedClassMetricsOut.html index 25781725..f183cff8 100644 --- a/target/apidocs/com/namsor/sdk2/model/ExpectedClassMetricsOut.html +++ b/target/apidocs/com/namsor/sdk2/model/ExpectedClassMetricsOut.html @@ -2,7 +2,7 @@ - + ExpectedClassMetricsOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/FeedbackLoopOut.html b/target/apidocs/com/namsor/sdk2/model/FeedbackLoopOut.html index 3cd17c3e..d712ac20 100644 --- a/target/apidocs/com/namsor/sdk2/model/FeedbackLoopOut.html +++ b/target/apidocs/com/namsor/sdk2/model/FeedbackLoopOut.html @@ -2,7 +2,7 @@ - + FeedbackLoopOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/FirstLastNameDiasporaedOut.html b/target/apidocs/com/namsor/sdk2/model/FirstLastNameDiasporaedOut.html index d5d5f55d..48d08a3d 100644 --- a/target/apidocs/com/namsor/sdk2/model/FirstLastNameDiasporaedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/FirstLastNameDiasporaedOut.html @@ -2,7 +2,7 @@ - + FirstLastNameDiasporaedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/FirstLastNameGenderIn.html b/target/apidocs/com/namsor/sdk2/model/FirstLastNameGenderIn.html index 035c058d..46a35503 100644 --- a/target/apidocs/com/namsor/sdk2/model/FirstLastNameGenderIn.html +++ b/target/apidocs/com/namsor/sdk2/model/FirstLastNameGenderIn.html @@ -2,7 +2,7 @@ - + FirstLastNameGenderIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/FirstLastNameGenderedOut.LikelyGenderEnum.Adapter.html b/target/apidocs/com/namsor/sdk2/model/FirstLastNameGenderedOut.LikelyGenderEnum.Adapter.html index 680ac207..b50e1a3b 100644 --- a/target/apidocs/com/namsor/sdk2/model/FirstLastNameGenderedOut.LikelyGenderEnum.Adapter.html +++ b/target/apidocs/com/namsor/sdk2/model/FirstLastNameGenderedOut.LikelyGenderEnum.Adapter.html @@ -2,7 +2,7 @@ - + FirstLastNameGenderedOut.LikelyGenderEnum.Adapter (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/FirstLastNameGenderedOut.LikelyGenderEnum.html b/target/apidocs/com/namsor/sdk2/model/FirstLastNameGenderedOut.LikelyGenderEnum.html index 47a1d876..d6456536 100644 --- a/target/apidocs/com/namsor/sdk2/model/FirstLastNameGenderedOut.LikelyGenderEnum.html +++ b/target/apidocs/com/namsor/sdk2/model/FirstLastNameGenderedOut.LikelyGenderEnum.html @@ -2,7 +2,7 @@ - + FirstLastNameGenderedOut.LikelyGenderEnum (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/FirstLastNameGenderedOut.html b/target/apidocs/com/namsor/sdk2/model/FirstLastNameGenderedOut.html index ae4c4894..9f64c7b2 100644 --- a/target/apidocs/com/namsor/sdk2/model/FirstLastNameGenderedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/FirstLastNameGenderedOut.html @@ -2,7 +2,7 @@ - + FirstLastNameGenderedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/FirstLastNameGeoIn.html b/target/apidocs/com/namsor/sdk2/model/FirstLastNameGeoIn.html index cf130cd3..a7a25b66 100644 --- a/target/apidocs/com/namsor/sdk2/model/FirstLastNameGeoIn.html +++ b/target/apidocs/com/namsor/sdk2/model/FirstLastNameGeoIn.html @@ -2,7 +2,7 @@ - + FirstLastNameGeoIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/FirstLastNameGeoZippedIn.html b/target/apidocs/com/namsor/sdk2/model/FirstLastNameGeoZippedIn.html index ab1291b9..e7e3aa63 100644 --- a/target/apidocs/com/namsor/sdk2/model/FirstLastNameGeoZippedIn.html +++ b/target/apidocs/com/namsor/sdk2/model/FirstLastNameGeoZippedIn.html @@ -2,7 +2,7 @@ - + FirstLastNameGeoZippedIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/FirstLastNameIn.html b/target/apidocs/com/namsor/sdk2/model/FirstLastNameIn.html index 6f0440d2..758088e2 100644 --- a/target/apidocs/com/namsor/sdk2/model/FirstLastNameIn.html +++ b/target/apidocs/com/namsor/sdk2/model/FirstLastNameIn.html @@ -2,7 +2,7 @@ - + FirstLastNameIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/FirstLastNameOriginedOut.html b/target/apidocs/com/namsor/sdk2/model/FirstLastNameOriginedOut.html index 01dbf0e6..32507ff5 100644 --- a/target/apidocs/com/namsor/sdk2/model/FirstLastNameOriginedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/FirstLastNameOriginedOut.html @@ -2,7 +2,7 @@ - + FirstLastNameOriginedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/FirstLastNameOut.html b/target/apidocs/com/namsor/sdk2/model/FirstLastNameOut.html index ba5fb0fd..a6b4e49c 100644 --- a/target/apidocs/com/namsor/sdk2/model/FirstLastNameOut.html +++ b/target/apidocs/com/namsor/sdk2/model/FirstLastNameOut.html @@ -2,7 +2,7 @@ - + FirstLastNameOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/FirstLastNamePhoneCodedOut.html b/target/apidocs/com/namsor/sdk2/model/FirstLastNamePhoneCodedOut.html index b176209f..96e4437e 100644 --- a/target/apidocs/com/namsor/sdk2/model/FirstLastNamePhoneCodedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/FirstLastNamePhoneCodedOut.html @@ -2,7 +2,7 @@ - + FirstLastNamePhoneCodedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/FirstLastNamePhoneNumberGeoIn.html b/target/apidocs/com/namsor/sdk2/model/FirstLastNamePhoneNumberGeoIn.html index f277facf..54198e67 100644 --- a/target/apidocs/com/namsor/sdk2/model/FirstLastNamePhoneNumberGeoIn.html +++ b/target/apidocs/com/namsor/sdk2/model/FirstLastNamePhoneNumberGeoIn.html @@ -2,7 +2,7 @@ - + FirstLastNamePhoneNumberGeoIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/FirstLastNamePhoneNumberIn.html b/target/apidocs/com/namsor/sdk2/model/FirstLastNamePhoneNumberIn.html index 61849909..b30f6d7c 100644 --- a/target/apidocs/com/namsor/sdk2/model/FirstLastNamePhoneNumberIn.html +++ b/target/apidocs/com/namsor/sdk2/model/FirstLastNamePhoneNumberIn.html @@ -2,7 +2,7 @@ - + FirstLastNamePhoneNumberIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.RaceEthnicityAltEnum.Adapter.html b/target/apidocs/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.RaceEthnicityAltEnum.Adapter.html index 5b33e865..75dba97c 100644 --- a/target/apidocs/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.RaceEthnicityAltEnum.Adapter.html +++ b/target/apidocs/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.RaceEthnicityAltEnum.Adapter.html @@ -2,7 +2,7 @@ - + FirstLastNameUSRaceEthnicityOut.RaceEthnicityAltEnum.Adapter (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.RaceEthnicityAltEnum.html b/target/apidocs/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.RaceEthnicityAltEnum.html index ba3b2fdb..dae60655 100644 --- a/target/apidocs/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.RaceEthnicityAltEnum.html +++ b/target/apidocs/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.RaceEthnicityAltEnum.html @@ -2,7 +2,7 @@ - + FirstLastNameUSRaceEthnicityOut.RaceEthnicityAltEnum (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.RaceEthnicityEnum.Adapter.html b/target/apidocs/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.RaceEthnicityEnum.Adapter.html index 23ad3e8c..c95f749f 100644 --- a/target/apidocs/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.RaceEthnicityEnum.Adapter.html +++ b/target/apidocs/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.RaceEthnicityEnum.Adapter.html @@ -2,7 +2,7 @@ - + FirstLastNameUSRaceEthnicityOut.RaceEthnicityEnum.Adapter (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.RaceEthnicityEnum.html b/target/apidocs/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.RaceEthnicityEnum.html index f1e3caa1..14594bf7 100644 --- a/target/apidocs/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.RaceEthnicityEnum.html +++ b/target/apidocs/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.RaceEthnicityEnum.html @@ -2,7 +2,7 @@ - + FirstLastNameUSRaceEthnicityOut.RaceEthnicityEnum (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.html b/target/apidocs/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.html index f9432db3..d7610dfe 100644 --- a/target/apidocs/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.html +++ b/target/apidocs/com/namsor/sdk2/model/FirstLastNameUSRaceEthnicityOut.html @@ -2,7 +2,7 @@ - + FirstLastNameUSRaceEthnicityOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/InlineObject.html b/target/apidocs/com/namsor/sdk2/model/InlineObject.html index b917eaaa..bf0a3030 100644 --- a/target/apidocs/com/namsor/sdk2/model/InlineObject.html +++ b/target/apidocs/com/namsor/sdk2/model/InlineObject.html @@ -2,7 +2,7 @@ - + InlineObject (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/InvoiceItemOut.html b/target/apidocs/com/namsor/sdk2/model/InvoiceItemOut.html index d99389b9..7f38e62d 100644 --- a/target/apidocs/com/namsor/sdk2/model/InvoiceItemOut.html +++ b/target/apidocs/com/namsor/sdk2/model/InvoiceItemOut.html @@ -2,7 +2,7 @@ - + InvoiceItemOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/InvoiceOut.html b/target/apidocs/com/namsor/sdk2/model/InvoiceOut.html index 122f5850..df84fa69 100644 --- a/target/apidocs/com/namsor/sdk2/model/InvoiceOut.html +++ b/target/apidocs/com/namsor/sdk2/model/InvoiceOut.html @@ -2,7 +2,7 @@ - + InvoiceOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/NamSorCounterOut.html b/target/apidocs/com/namsor/sdk2/model/NamSorCounterOut.html index 56a4aab5..3e8f0b5e 100644 --- a/target/apidocs/com/namsor/sdk2/model/NamSorCounterOut.html +++ b/target/apidocs/com/namsor/sdk2/model/NamSorCounterOut.html @@ -2,7 +2,7 @@ - + NamSorCounterOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/NameMatchCandidateOut.html b/target/apidocs/com/namsor/sdk2/model/NameMatchCandidateOut.html index 56fac9bc..b600c260 100644 --- a/target/apidocs/com/namsor/sdk2/model/NameMatchCandidateOut.html +++ b/target/apidocs/com/namsor/sdk2/model/NameMatchCandidateOut.html @@ -2,7 +2,7 @@ - + NameMatchCandidateOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/NameMatchCandidatesOut.html b/target/apidocs/com/namsor/sdk2/model/NameMatchCandidatesOut.html index 29989748..cda9484c 100644 --- a/target/apidocs/com/namsor/sdk2/model/NameMatchCandidatesOut.html +++ b/target/apidocs/com/namsor/sdk2/model/NameMatchCandidatesOut.html @@ -2,7 +2,7 @@ - + NameMatchCandidatesOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/ParsedFullNameGeoIn.html b/target/apidocs/com/namsor/sdk2/model/ParsedFullNameGeoIn.html index 82edc3ba..1b55058c 100644 --- a/target/apidocs/com/namsor/sdk2/model/ParsedFullNameGeoIn.html +++ b/target/apidocs/com/namsor/sdk2/model/ParsedFullNameGeoIn.html @@ -2,7 +2,7 @@ - + ParsedFullNameGeoIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/ParsedFullNameIn.html b/target/apidocs/com/namsor/sdk2/model/ParsedFullNameIn.html index 26581b8b..70c754f9 100644 --- a/target/apidocs/com/namsor/sdk2/model/ParsedFullNameIn.html +++ b/target/apidocs/com/namsor/sdk2/model/ParsedFullNameIn.html @@ -2,7 +2,7 @@ - + ParsedFullNameIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/PersonalNameGenderedOut.LikelyGenderEnum.Adapter.html b/target/apidocs/com/namsor/sdk2/model/PersonalNameGenderedOut.LikelyGenderEnum.Adapter.html index ab186469..99e46825 100644 --- a/target/apidocs/com/namsor/sdk2/model/PersonalNameGenderedOut.LikelyGenderEnum.Adapter.html +++ b/target/apidocs/com/namsor/sdk2/model/PersonalNameGenderedOut.LikelyGenderEnum.Adapter.html @@ -2,7 +2,7 @@ - + PersonalNameGenderedOut.LikelyGenderEnum.Adapter (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/PersonalNameGenderedOut.LikelyGenderEnum.html b/target/apidocs/com/namsor/sdk2/model/PersonalNameGenderedOut.LikelyGenderEnum.html index e59bd9f2..57c953dd 100644 --- a/target/apidocs/com/namsor/sdk2/model/PersonalNameGenderedOut.LikelyGenderEnum.html +++ b/target/apidocs/com/namsor/sdk2/model/PersonalNameGenderedOut.LikelyGenderEnum.html @@ -2,7 +2,7 @@ - + PersonalNameGenderedOut.LikelyGenderEnum (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/PersonalNameGenderedOut.html b/target/apidocs/com/namsor/sdk2/model/PersonalNameGenderedOut.html index 0e683b37..8bcaa5b6 100644 --- a/target/apidocs/com/namsor/sdk2/model/PersonalNameGenderedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/PersonalNameGenderedOut.html @@ -2,7 +2,7 @@ - + PersonalNameGenderedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/PersonalNameGeoIn.html b/target/apidocs/com/namsor/sdk2/model/PersonalNameGeoIn.html index 68dd1de6..9c4cff5d 100644 --- a/target/apidocs/com/namsor/sdk2/model/PersonalNameGeoIn.html +++ b/target/apidocs/com/namsor/sdk2/model/PersonalNameGeoIn.html @@ -2,7 +2,7 @@ - + PersonalNameGeoIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/PersonalNameGeoOut.html b/target/apidocs/com/namsor/sdk2/model/PersonalNameGeoOut.html index 8d330b1b..9f48387b 100644 --- a/target/apidocs/com/namsor/sdk2/model/PersonalNameGeoOut.html +++ b/target/apidocs/com/namsor/sdk2/model/PersonalNameGeoOut.html @@ -2,7 +2,7 @@ - + PersonalNameGeoOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/PersonalNameIn.html b/target/apidocs/com/namsor/sdk2/model/PersonalNameIn.html index 44a6c75d..13b1601c 100644 --- a/target/apidocs/com/namsor/sdk2/model/PersonalNameIn.html +++ b/target/apidocs/com/namsor/sdk2/model/PersonalNameIn.html @@ -2,7 +2,7 @@ - + PersonalNameIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/PersonalNameParsedOut.html b/target/apidocs/com/namsor/sdk2/model/PersonalNameParsedOut.html index a7c48194..7ade47d7 100644 --- a/target/apidocs/com/namsor/sdk2/model/PersonalNameParsedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/PersonalNameParsedOut.html @@ -2,7 +2,7 @@ - + PersonalNameParsedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/RomanizedNameOut.html b/target/apidocs/com/namsor/sdk2/model/RomanizedNameOut.html index d302cc83..2b947917 100644 --- a/target/apidocs/com/namsor/sdk2/model/RomanizedNameOut.html +++ b/target/apidocs/com/namsor/sdk2/model/RomanizedNameOut.html @@ -2,7 +2,7 @@ - + RomanizedNameOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/SoftwareVersionOut.html b/target/apidocs/com/namsor/sdk2/model/SoftwareVersionOut.html index 3ec309d9..8fbe0ecc 100644 --- a/target/apidocs/com/namsor/sdk2/model/SoftwareVersionOut.html +++ b/target/apidocs/com/namsor/sdk2/model/SoftwareVersionOut.html @@ -2,7 +2,7 @@ - + SoftwareVersionOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/SourceDetailedMetricsOut.html b/target/apidocs/com/namsor/sdk2/model/SourceDetailedMetricsOut.html index cf641a59..a8612485 100644 --- a/target/apidocs/com/namsor/sdk2/model/SourceDetailedMetricsOut.html +++ b/target/apidocs/com/namsor/sdk2/model/SourceDetailedMetricsOut.html @@ -2,7 +2,7 @@ - + SourceDetailedMetricsOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/SourceMetricsOut.html b/target/apidocs/com/namsor/sdk2/model/SourceMetricsOut.html index b3a6c4e3..821f02c2 100644 --- a/target/apidocs/com/namsor/sdk2/model/SourceMetricsOut.html +++ b/target/apidocs/com/namsor/sdk2/model/SourceMetricsOut.html @@ -2,7 +2,7 @@ - + SourceMetricsOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/StripeCardOut.html b/target/apidocs/com/namsor/sdk2/model/StripeCardOut.html index a7559add..e8c83877 100644 --- a/target/apidocs/com/namsor/sdk2/model/StripeCardOut.html +++ b/target/apidocs/com/namsor/sdk2/model/StripeCardOut.html @@ -2,7 +2,7 @@ - + StripeCardOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/StripeCustomerOut.html b/target/apidocs/com/namsor/sdk2/model/StripeCustomerOut.html index 9972efcd..566e8317 100644 --- a/target/apidocs/com/namsor/sdk2/model/StripeCustomerOut.html +++ b/target/apidocs/com/namsor/sdk2/model/StripeCustomerOut.html @@ -2,7 +2,7 @@ - + StripeCustomerOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/SystemMetricsOut.html b/target/apidocs/com/namsor/sdk2/model/SystemMetricsOut.html index 86df9351..2aae5408 100644 --- a/target/apidocs/com/namsor/sdk2/model/SystemMetricsOut.html +++ b/target/apidocs/com/namsor/sdk2/model/SystemMetricsOut.html @@ -2,7 +2,7 @@ - + SystemMetricsOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/UserInfoOut.html b/target/apidocs/com/namsor/sdk2/model/UserInfoOut.html index 7de33c96..81af5049 100644 --- a/target/apidocs/com/namsor/sdk2/model/UserInfoOut.html +++ b/target/apidocs/com/namsor/sdk2/model/UserInfoOut.html @@ -2,7 +2,7 @@ - + UserInfoOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/APIBillingPeriodUsageOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/APIBillingPeriodUsageOut.html index f5e8033c..9adad630 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/APIBillingPeriodUsageOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/APIBillingPeriodUsageOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.APIBillingPeriodUsageOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/APICounterV2Out.html b/target/apidocs/com/namsor/sdk2/model/class-use/APICounterV2Out.html index ffc6a8ff..4b184436 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/APICounterV2Out.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/APICounterV2Out.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.APICounterV2Out (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/APIKeyOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/APIKeyOut.html index 04069b67..da01399a 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/APIKeyOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/APIKeyOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.APIKeyOut (namsor-sdk2 2.0.12 API) @@ -303,13 +303,13 @@

Uses of APIKeyOut -SourceDetailedMetricsOut.getSource() +SourceMetricsOut.getSource()
Get source
APIKeyOut -SourceMetricsOut.getSource() +SourceDetailedMetricsOut.getSource()
Get source
@@ -352,20 +352,20 @@

Uses of void -SourceDetailedMetricsOut.setSource(APIKeyOut source)  +SourceMetricsOut.setSource(APIKeyOut source)  void -SourceMetricsOut.setSource(APIKeyOut source)  +SourceDetailedMetricsOut.setSource(APIKeyOut source)  -SourceDetailedMetricsOut -SourceDetailedMetricsOut.source(APIKeyOut source)  - - SourceMetricsOut SourceMetricsOut.source(APIKeyOut source)  + +SourceDetailedMetricsOut +SourceDetailedMetricsOut.source(APIKeyOut source)  + diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/APIPeriodUsageOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/APIPeriodUsageOut.html index 4777d9dc..bdc8b22a 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/APIPeriodUsageOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/APIPeriodUsageOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.APIPeriodUsageOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/APIPlanOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/APIPlanOut.html index 930fec1a..28f706ae 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/APIPlanOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/APIPlanOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.APIPlanOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/APIPlanSubscriptionOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/APIPlanSubscriptionOut.html index 7e826af2..61f1d2b4 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/APIPlanSubscriptionOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/APIPlanSubscriptionOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.APIPlanSubscriptionOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/APIPlansOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/APIPlansOut.html index 589d67a5..d2f2a610 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/APIPlansOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/APIPlansOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.APIPlansOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/APIServiceOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/APIServiceOut.html index 74ca2ae7..411cba5d 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/APIServiceOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/APIServiceOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.APIServiceOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/APIServicesOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/APIServicesOut.html index ff546685..6d81eb52 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/APIServicesOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/APIServicesOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.APIServicesOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/APIUsageAggregatedOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/APIUsageAggregatedOut.html index 26f41344..f9336d29 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/APIUsageAggregatedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/APIUsageAggregatedOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.APIUsageAggregatedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameDiasporaedOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameDiasporaedOut.html index ac83d148..cce01eab 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameDiasporaedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameDiasporaedOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.BatchFirstLastNameDiasporaedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameGenderIn.html b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameGenderIn.html index 0e296737..67716a4e 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameGenderIn.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameGenderIn.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.BatchFirstLastNameGenderIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameGenderedOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameGenderedOut.html index 0c201ed1..9f78a5eb 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameGenderedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameGenderedOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.BatchFirstLastNameGenderedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameGeoIn.html b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameGeoIn.html index f7c4907a..d48a3553 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameGeoIn.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameGeoIn.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.BatchFirstLastNameGeoIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameGeoZippedIn.html b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameGeoZippedIn.html index 195330e2..43a869ef 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameGeoZippedIn.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameGeoZippedIn.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.BatchFirstLastNameGeoZippedIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameIn.html b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameIn.html index 665d1b6f..f188fb62 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameIn.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameIn.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.BatchFirstLastNameIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameOriginedOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameOriginedOut.html index ee85dc38..2adea51e 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameOriginedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameOriginedOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.BatchFirstLastNameOriginedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNamePhoneCodedOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNamePhoneCodedOut.html index 74a14669..d4eeabd1 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNamePhoneCodedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNamePhoneCodedOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.BatchFirstLastNamePhoneCodedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNamePhoneNumberGeoIn.html b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNamePhoneNumberGeoIn.html index f01e946d..f4abc7fd 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNamePhoneNumberGeoIn.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNamePhoneNumberGeoIn.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.BatchFirstLastNamePhoneNumberGeoIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNamePhoneNumberIn.html b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNamePhoneNumberIn.html index ae211d26..3f073322 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNamePhoneNumberIn.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNamePhoneNumberIn.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.BatchFirstLastNamePhoneNumberIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameUSRaceEthnicityOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameUSRaceEthnicityOut.html index 95cfe0d8..ec209194 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameUSRaceEthnicityOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/BatchFirstLastNameUSRaceEthnicityOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.BatchFirstLastNameUSRaceEthnicityOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/BatchNameMatchCandidatesOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/BatchNameMatchCandidatesOut.html index 26a85788..13b8e2be 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/BatchNameMatchCandidatesOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/BatchNameMatchCandidatesOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.BatchNameMatchCandidatesOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/BatchParsedFullNameGeoIn.html b/target/apidocs/com/namsor/sdk2/model/class-use/BatchParsedFullNameGeoIn.html index acdb68b8..9866ea75 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/BatchParsedFullNameGeoIn.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/BatchParsedFullNameGeoIn.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.BatchParsedFullNameGeoIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/BatchParsedFullNameIn.html b/target/apidocs/com/namsor/sdk2/model/class-use/BatchParsedFullNameIn.html index f4fc6d37..1032bce3 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/BatchParsedFullNameIn.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/BatchParsedFullNameIn.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.BatchParsedFullNameIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/BatchPersonalNameGenderedOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/BatchPersonalNameGenderedOut.html index c9fbec84..fa3f9651 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/BatchPersonalNameGenderedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/BatchPersonalNameGenderedOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.BatchPersonalNameGenderedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/BatchPersonalNameGeoIn.html b/target/apidocs/com/namsor/sdk2/model/class-use/BatchPersonalNameGeoIn.html index 2244a0a9..488d2f7d 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/BatchPersonalNameGeoIn.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/BatchPersonalNameGeoIn.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.BatchPersonalNameGeoIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/BatchPersonalNameGeoOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/BatchPersonalNameGeoOut.html index a8bce012..1400d40d 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/BatchPersonalNameGeoOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/BatchPersonalNameGeoOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.BatchPersonalNameGeoOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/BatchPersonalNameIn.html b/target/apidocs/com/namsor/sdk2/model/class-use/BatchPersonalNameIn.html index 84c77c0d..9a8079e9 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/BatchPersonalNameIn.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/BatchPersonalNameIn.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.BatchPersonalNameIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/BatchPersonalNameParsedOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/BatchPersonalNameParsedOut.html index dffe3ece..e6238c93 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/BatchPersonalNameParsedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/BatchPersonalNameParsedOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.BatchPersonalNameParsedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/BillingHistoryOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/BillingHistoryOut.html index 10d39d8d..4590ac6d 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/BillingHistoryOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/BillingHistoryOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.BillingHistoryOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/BillingInfoInOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/BillingInfoInOut.html index 506276f3..a7db6a61 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/BillingInfoInOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/BillingInfoInOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.BillingInfoInOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/ClassifierMetricsOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/ClassifierMetricsOut.html index 91c853cf..25f842de 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/ClassifierMetricsOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/ClassifierMetricsOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.ClassifierMetricsOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/CurrenciesOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/CurrenciesOut.html index 3e01071c..67916127 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/CurrenciesOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/CurrenciesOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.CurrenciesOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/DeployUIOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/DeployUIOut.html deleted file mode 100644 index bd9785f9..00000000 --- a/target/apidocs/com/namsor/sdk2/model/class-use/DeployUIOut.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - -Uses of Class com.namsor.sdk2.model.DeployUIOut (namsor-sdk2 2.0.11 API) - - - - - - - - - - - -
-

Uses of Class
com.namsor.sdk2.model.DeployUIOut

-
-
- -
- - - - -

Copyright © 2020. All rights reserved.

- - diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/ExpectedClassMetricsOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/ExpectedClassMetricsOut.html index e83facd1..e6c33412 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/ExpectedClassMetricsOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/ExpectedClassMetricsOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.ExpectedClassMetricsOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/FeedbackLoopOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/FeedbackLoopOut.html index 5a221103..c585fa50 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/FeedbackLoopOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/FeedbackLoopOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.FeedbackLoopOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameDiasporaedOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameDiasporaedOut.html index d378095b..977eb74c 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameDiasporaedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameDiasporaedOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.FirstLastNameDiasporaedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGenderIn.html b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGenderIn.html index 28d16083..d2bbaa5e 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGenderIn.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGenderIn.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.FirstLastNameGenderIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGenderedOut.LikelyGenderEnum.Adapter.html b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGenderedOut.LikelyGenderEnum.Adapter.html index 76fa84fa..fe8a3b21 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGenderedOut.LikelyGenderEnum.Adapter.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGenderedOut.LikelyGenderEnum.Adapter.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.FirstLastNameGenderedOut.LikelyGenderEnum.Adapter (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGenderedOut.LikelyGenderEnum.html b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGenderedOut.LikelyGenderEnum.html index 823b4b49..5e3507e4 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGenderedOut.LikelyGenderEnum.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGenderedOut.LikelyGenderEnum.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.FirstLastNameGenderedOut.LikelyGenderEnum (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGenderedOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGenderedOut.html index 955078a8..bde15957 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGenderedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGenderedOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.FirstLastNameGenderedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGeoIn.html b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGeoIn.html index d107b972..b6e4e533 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGeoIn.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGeoIn.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.FirstLastNameGeoIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGeoZippedIn.html b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGeoZippedIn.html index 87da45e0..3beb2608 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGeoZippedIn.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameGeoZippedIn.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.FirstLastNameGeoZippedIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameIn.html b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameIn.html index c99acefd..9b2b8bc5 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameIn.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameIn.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.FirstLastNameIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameOriginedOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameOriginedOut.html index b3ab1ebe..7da0b419 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameOriginedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameOriginedOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.FirstLastNameOriginedOut (namsor-sdk2 2.0.12 API) @@ -187,7 +187,7 @@

Uses of FirstLastNameOriginedOut -CorridorOut.getFirstLastNameOriginedOut() +FirstLastNamePhoneNumberIn.getFirstLastNameOriginedOut()
Get firstLastNameOriginedOut
@@ -199,7 +199,7 @@

Uses of FirstLastNameOriginedOut -FirstLastNamePhoneNumberIn.getFirstLastNameOriginedOut() +CorridorOut.getFirstLastNameOriginedOut()
Get firstLastNameOriginedOut
@@ -268,20 +268,20 @@

Uses of BatchFirstLastNameOriginedOut.addPersonalNamesItem(FirstLastNameOriginedOut personalNamesItem)  -CorridorOut -CorridorOut.firstLastNameOriginedOut(FirstLastNameOriginedOut firstLastNameOriginedOut)  +FirstLastNamePhoneNumberIn +FirstLastNamePhoneNumberIn.firstLastNameOriginedOut(FirstLastNameOriginedOut firstLastNameOriginedOut)  FirstLastNamePhoneNumberGeoIn FirstLastNamePhoneNumberGeoIn.firstLastNameOriginedOut(FirstLastNameOriginedOut firstLastNameOriginedOut)  -FirstLastNamePhoneNumberIn -FirstLastNamePhoneNumberIn.firstLastNameOriginedOut(FirstLastNameOriginedOut firstLastNameOriginedOut)  +CorridorOut +CorridorOut.firstLastNameOriginedOut(FirstLastNameOriginedOut firstLastNameOriginedOut)  void -CorridorOut.setFirstLastNameOriginedOut(FirstLastNameOriginedOut firstLastNameOriginedOut)  +FirstLastNamePhoneNumberIn.setFirstLastNameOriginedOut(FirstLastNameOriginedOut firstLastNameOriginedOut)  void @@ -289,7 +289,7 @@

Uses of void -FirstLastNamePhoneNumberIn.setFirstLastNameOriginedOut(FirstLastNameOriginedOut firstLastNameOriginedOut)  +CorridorOut.setFirstLastNameOriginedOut(FirstLastNameOriginedOut firstLastNameOriginedOut)  diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameOut.html index 1c8c17ae..26c8c91c 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.FirstLastNameOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNamePhoneCodedOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNamePhoneCodedOut.html index dc9ab91e..d31279d6 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNamePhoneCodedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNamePhoneCodedOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.FirstLastNamePhoneCodedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNamePhoneNumberGeoIn.html b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNamePhoneNumberGeoIn.html index 976f11e7..7ff5908b 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNamePhoneNumberGeoIn.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNamePhoneNumberGeoIn.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.FirstLastNamePhoneNumberGeoIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNamePhoneNumberIn.html b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNamePhoneNumberIn.html index 42c966da..88fc220b 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNamePhoneNumberIn.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNamePhoneNumberIn.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.FirstLastNamePhoneNumberIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameUSRaceEthnicityOut.RaceEthnicityAltEnum.Adapter.html b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameUSRaceEthnicityOut.RaceEthnicityAltEnum.Adapter.html index e671458a..05043dd2 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameUSRaceEthnicityOut.RaceEthnicityAltEnum.Adapter.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameUSRaceEthnicityOut.RaceEthnicityAltEnum.Adapter.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.FirstLastNameUSRaceEthnicityOut.RaceEthnicityAltEnum.Adapter (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameUSRaceEthnicityOut.RaceEthnicityAltEnum.html b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameUSRaceEthnicityOut.RaceEthnicityAltEnum.html index 68b95d57..4ee1da7e 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameUSRaceEthnicityOut.RaceEthnicityAltEnum.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameUSRaceEthnicityOut.RaceEthnicityAltEnum.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.FirstLastNameUSRaceEthnicityOut.RaceEthnicityAltEnum (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameUSRaceEthnicityOut.RaceEthnicityEnum.Adapter.html b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameUSRaceEthnicityOut.RaceEthnicityEnum.Adapter.html index 1c18de8c..cf3057ef 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameUSRaceEthnicityOut.RaceEthnicityEnum.Adapter.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameUSRaceEthnicityOut.RaceEthnicityEnum.Adapter.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.FirstLastNameUSRaceEthnicityOut.RaceEthnicityEnum.Adapter (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameUSRaceEthnicityOut.RaceEthnicityEnum.html b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameUSRaceEthnicityOut.RaceEthnicityEnum.html index e06480aa..e90e33f0 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameUSRaceEthnicityOut.RaceEthnicityEnum.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameUSRaceEthnicityOut.RaceEthnicityEnum.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.FirstLastNameUSRaceEthnicityOut.RaceEthnicityEnum (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameUSRaceEthnicityOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameUSRaceEthnicityOut.html index 08d4888e..00955e27 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameUSRaceEthnicityOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/FirstLastNameUSRaceEthnicityOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.FirstLastNameUSRaceEthnicityOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/InlineObject.html b/target/apidocs/com/namsor/sdk2/model/class-use/InlineObject.html index c91b70ea..b0b27a37 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/InlineObject.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/InlineObject.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.InlineObject (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/InvoiceItemOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/InvoiceItemOut.html index 64d3ec95..0ac7cff5 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/InvoiceItemOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/InvoiceItemOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.InvoiceItemOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/InvoiceOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/InvoiceOut.html index 772ea64e..e657bc3f 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/InvoiceOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/InvoiceOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.InvoiceOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/NamSorCounterOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/NamSorCounterOut.html index b5f2bc39..51034758 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/NamSorCounterOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/NamSorCounterOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.NamSorCounterOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/NameMatchCandidateOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/NameMatchCandidateOut.html index 5fe7f72c..cd023318 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/NameMatchCandidateOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/NameMatchCandidateOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.NameMatchCandidateOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/NameMatchCandidatesOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/NameMatchCandidatesOut.html index 4668330b..0e562500 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/NameMatchCandidatesOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/NameMatchCandidatesOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.NameMatchCandidatesOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/ParsedFullNameGeoIn.html b/target/apidocs/com/namsor/sdk2/model/class-use/ParsedFullNameGeoIn.html index ebe4cb98..cdbd63ce 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/ParsedFullNameGeoIn.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/ParsedFullNameGeoIn.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.ParsedFullNameGeoIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/ParsedFullNameIn.html b/target/apidocs/com/namsor/sdk2/model/class-use/ParsedFullNameIn.html index 62b916f1..597f63ff 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/ParsedFullNameIn.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/ParsedFullNameIn.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.ParsedFullNameIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameGenderedOut.LikelyGenderEnum.Adapter.html b/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameGenderedOut.LikelyGenderEnum.Adapter.html index eb1c9934..64014490 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameGenderedOut.LikelyGenderEnum.Adapter.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameGenderedOut.LikelyGenderEnum.Adapter.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.PersonalNameGenderedOut.LikelyGenderEnum.Adapter (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameGenderedOut.LikelyGenderEnum.html b/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameGenderedOut.LikelyGenderEnum.html index 8a1fe9a6..e40bf790 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameGenderedOut.LikelyGenderEnum.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameGenderedOut.LikelyGenderEnum.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.PersonalNameGenderedOut.LikelyGenderEnum (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameGenderedOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameGenderedOut.html index 7376826c..1bc7c8ca 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameGenderedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameGenderedOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.PersonalNameGenderedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameGeoIn.html b/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameGeoIn.html index 560ced42..e8b57b82 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameGeoIn.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameGeoIn.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.PersonalNameGeoIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameGeoOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameGeoOut.html index 28c4062d..75367d9e 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameGeoOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameGeoOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.PersonalNameGeoOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameIn.html b/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameIn.html index e23673e4..6e511177 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameIn.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameIn.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.PersonalNameIn (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameParsedOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameParsedOut.html index be5b3a35..366aa7a8 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameParsedOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/PersonalNameParsedOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.PersonalNameParsedOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/RomanizedNameOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/RomanizedNameOut.html index ad25fefd..d91a9b8e 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/RomanizedNameOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/RomanizedNameOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.RomanizedNameOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/SoftwareVersionOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/SoftwareVersionOut.html index 20c6f9a8..b90f906d 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/SoftwareVersionOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/SoftwareVersionOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.SoftwareVersionOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/SourceDetailedMetricsOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/SourceDetailedMetricsOut.html index 434e7d3d..d3a0154b 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/SourceDetailedMetricsOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/SourceDetailedMetricsOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.SourceDetailedMetricsOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/SourceMetricsOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/SourceMetricsOut.html index 2a5c5091..966fd359 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/SourceMetricsOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/SourceMetricsOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.SourceMetricsOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/StripeCardOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/StripeCardOut.html index c51992c0..e7d34ecf 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/StripeCardOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/StripeCardOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.StripeCardOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/StripeCustomerOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/StripeCustomerOut.html index bd6dc89c..7ad6923b 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/StripeCustomerOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/StripeCustomerOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.StripeCustomerOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/SystemMetricsOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/SystemMetricsOut.html index 445fbe46..9e76624e 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/SystemMetricsOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/SystemMetricsOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.SystemMetricsOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/class-use/UserInfoOut.html b/target/apidocs/com/namsor/sdk2/model/class-use/UserInfoOut.html index 23ff7bae..352aca42 100644 --- a/target/apidocs/com/namsor/sdk2/model/class-use/UserInfoOut.html +++ b/target/apidocs/com/namsor/sdk2/model/class-use/UserInfoOut.html @@ -2,7 +2,7 @@ - + Uses of Class com.namsor.sdk2.model.UserInfoOut (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/package-summary.html b/target/apidocs/com/namsor/sdk2/model/package-summary.html index 2ad21ddd..e1e903ec 100644 --- a/target/apidocs/com/namsor/sdk2/model/package-summary.html +++ b/target/apidocs/com/namsor/sdk2/model/package-summary.html @@ -2,7 +2,7 @@ - + com.namsor.sdk2.model (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/package-tree.html b/target/apidocs/com/namsor/sdk2/model/package-tree.html index e68439a1..bcc99bd2 100644 --- a/target/apidocs/com/namsor/sdk2/model/package-tree.html +++ b/target/apidocs/com/namsor/sdk2/model/package-tree.html @@ -2,7 +2,7 @@ - + com.namsor.sdk2.model Class Hierarchy (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/com/namsor/sdk2/model/package-use.html b/target/apidocs/com/namsor/sdk2/model/package-use.html index 963e84b0..955919b4 100644 --- a/target/apidocs/com/namsor/sdk2/model/package-use.html +++ b/target/apidocs/com/namsor/sdk2/model/package-use.html @@ -2,7 +2,7 @@ - + Uses of Package com.namsor.sdk2.model (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/constant-values.html b/target/apidocs/constant-values.html index 01476b6b..b8f0c763 100644 --- a/target/apidocs/constant-values.html +++ b/target/apidocs/constant-values.html @@ -2,7 +2,7 @@ - + Constant Field Values (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/deprecated-list.html b/target/apidocs/deprecated-list.html index d9d728bc..3261a226 100644 --- a/target/apidocs/deprecated-list.html +++ b/target/apidocs/deprecated-list.html @@ -2,7 +2,7 @@ - + Deprecated List (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/help-doc.html b/target/apidocs/help-doc.html index c20f08ce..1e4d89b5 100644 --- a/target/apidocs/help-doc.html +++ b/target/apidocs/help-doc.html @@ -2,7 +2,7 @@ - + API Help (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/index-all.html b/target/apidocs/index-all.html index eab1716d..8c751e03 100644 --- a/target/apidocs/index-all.html +++ b/target/apidocs/index-all.html @@ -2,7 +2,7 @@ - + Index (namsor-sdk2 2.0.12 API) diff --git a/target/apidocs/index.html b/target/apidocs/index.html index 523a3e5f..659039ef 100644 --- a/target/apidocs/index.html +++ b/target/apidocs/index.html @@ -2,7 +2,7 @@ - + namsor-sdk2 2.0.12 API