Skip to content

Commit

Permalink
Minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
NamSor SAS committed Nov 4, 2019
1 parent 7952a1f commit cf5ba14
Show file tree
Hide file tree
Showing 399 changed files with 1,221 additions and 1,221 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

NamSor API v2
- API version: 2.0.6
- Build date: 2019-10-28T19:07:05.363+01:00[Europe/Berlin]
- Build date: 2019-11-04T11:52:46.102+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!

Expand Down Expand Up @@ -41,7 +41,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.namsor</groupId>
<artifactId>namsor-sdk2</artifactId>
<version>2.0.5</version>
<version>2.0.6</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -51,7 +51,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
compile "com.namsor:namsor-sdk2:2.0.5"
compile "com.namsor:namsor-sdk2:2.0.6"
```

### Others
Expand All @@ -64,7 +64,7 @@ mvn clean package

Then manually install the following JARs:

* `target/namsor-sdk2-2.0.5.jar`
* `target/namsor-sdk2-2.0.6.jar`
* `target/lib/*.jar`

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'

group = 'com.namsor'
version = '2.0.5'
version = '2.0.6'

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "com.namsor",
name := "namsor-sdk2",
version := "2.0.5",
version := "2.0.6",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>namsor-sdk2</artifactId>
<packaging>jar</packaging>
<name>namsor-sdk2</name>
<version>2.0.5</version>
<version>2.0.6</version>
<url>https://github.com/openapitools/openapi-generator</url>
<description>OpenAPI Java</description>
<scm>
Expand Down
2 changes: 1 addition & 1 deletion run-java.bash
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ echo update openapi-generator
./bin/utils/openapi-generator-cli.sh
rm -Rf ./namsor/client/java/
echo run openapi-generator
java -jar modules/openapi-generator-cli/target/openapi-generator-cli.jar generate --git-repo-id namsor-java-sdk2 --git-user-id namsor --artifact-version 2.0.5 --group-id com.namsor --artifact-id namsor-sdk2 --invoker-package com.namsor.sdk2.invoke --model-package com.namsor.sdk2.model --api-package com.namsor.sdk2.api -i https://v2.namsor.com/NamSorAPIv2/api2/openapi.json -g java -o namsor/client/java
java -jar modules/openapi-generator-cli/target/openapi-generator-cli.jar generate --git-repo-id namsor-java-sdk2 --git-user-id namsor --artifact-version 2.0.6 --group-id com.namsor --artifact-id namsor-sdk2 --invoker-package com.namsor.sdk2.invoke --model-package com.namsor.sdk2.model --api-package com.namsor.sdk2.api -i https://v2.namsor.com/NamSorAPIv2/api2/openapi.json -g java -o namsor/client/java
cd ./namsor/client/java/
mvn clean package
cd target
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/namsor/sdk2/invoke/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ private void init() {
json = new JSON();

// Set default User-Agent.
setUserAgent("OpenAPI-Generator/2.0.5/java");
setUserAgent("OpenAPI-Generator/2.0.6/java");

authentications = new HashMap<String, Authentication>();
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/namsor/sdk2/invoke/ApiException.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import java.util.Map;
import java.util.List;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class ApiException extends Exception {
private int code = 0;
private Map<String, List<String>> responseHeaders = null;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/namsor/sdk2/invoke/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

package com.namsor.sdk2.invoke;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class Configuration {
private static ApiClient defaultApiClient = new ApiClient();

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/namsor/sdk2/invoke/Pair.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

package com.namsor.sdk2.invoke;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class Pair {
private String name = "";
private String value = "";
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/namsor/sdk2/invoke/StringUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

package com.namsor.sdk2.invoke;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class StringUtil {
/**
* Check if the given array contains the given value (with case-insensitive comparison).
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/namsor/sdk2/invoke/auth/ApiKeyAuth.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import java.util.Map;
import java.util.List;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class ApiKeyAuth implements Authentication {
private final String location;
private final String paramName;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/namsor/sdk2/invoke/auth/OAuth.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import java.util.Map;
import java.util.List;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class OAuth implements Authentication {
private String accessToken;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* APIBillingPeriodUsageOut
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class APIBillingPeriodUsageOut {
public static final String SERIALIZED_NAME_API_KEY = "apiKey";
@SerializedName(SERIALIZED_NAME_API_KEY)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/namsor/sdk2/model/APICounterV2Out.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
/**
* APICounterV2Out
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class APICounterV2Out {
public static final String SERIALIZED_NAME_API_KEY = "apiKey";
@SerializedName(SERIALIZED_NAME_API_KEY)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/namsor/sdk2/model/APIKeyOut.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* APIKeyOut
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class APIKeyOut {
public static final String SERIALIZED_NAME_API_KEY = "apiKey";
@SerializedName(SERIALIZED_NAME_API_KEY)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/namsor/sdk2/model/APIPeriodUsageOut.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/**
* APIPeriodUsageOut
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class APIPeriodUsageOut {
public static final String SERIALIZED_NAME_SUBSCRIPTION = "subscription";
@SerializedName(SERIALIZED_NAME_SUBSCRIPTION)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/namsor/sdk2/model/APIPlanOut.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* APIPlanOut
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class APIPlanOut {
public static final String SERIALIZED_NAME_PLAN_NAME = "planName";
@SerializedName(SERIALIZED_NAME_PLAN_NAME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* APIPlanSubscriptionOut
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class APIPlanSubscriptionOut {
public static final String SERIALIZED_NAME_API_KEY = "apiKey";
@SerializedName(SERIALIZED_NAME_API_KEY)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/namsor/sdk2/model/APIPlansOut.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* APIPlansOut
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class APIPlansOut {
public static final String SERIALIZED_NAME_USAGE_RATIO_FOR_DUPPLICATES = "usageRatioForDupplicates";
@SerializedName(SERIALIZED_NAME_USAGE_RATIO_FOR_DUPPLICATES)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/namsor/sdk2/model/APIServiceOut.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* APIServiceOut
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class APIServiceOut {
public static final String SERIALIZED_NAME_SERVICE_NAME = "serviceName";
@SerializedName(SERIALIZED_NAME_SERVICE_NAME)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/namsor/sdk2/model/APIServicesOut.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* APIServicesOut
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class APIServicesOut {
public static final String SERIALIZED_NAME_API_SERVICES = "apiServices";
@SerializedName(SERIALIZED_NAME_API_SERVICES)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/**
* APIUsageAggregatedOut
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class APIUsageAggregatedOut {
public static final String SERIALIZED_NAME_TIME_UNIT = "timeUnit";
@SerializedName(SERIALIZED_NAME_TIME_UNIT)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* Represents the output of inferring the LIKELY ethnicity from a personal name, given an country of residence.
*/
@ApiModel(description = "Represents the output of inferring the LIKELY ethnicity from a personal name, given an country of residence.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class BatchFirstLastNameDiasporaedOut {
public static final String SERIALIZED_NAME_PERSONAL_NAMES = "personalNames";
@SerializedName(SERIALIZED_NAME_PERSONAL_NAMES)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* BatchFirstLastNameGenderIn
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class BatchFirstLastNameGenderIn {
public static final String SERIALIZED_NAME_PERSONAL_NAMES = "personalNames";
@SerializedName(SERIALIZED_NAME_PERSONAL_NAMES)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* Represents the output of inferring the LIKELY gender from a list of personal names.
*/
@ApiModel(description = "Represents the output of inferring the LIKELY gender from a list of personal names.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class BatchFirstLastNameGenderedOut {
public static final String SERIALIZED_NAME_PERSONAL_NAMES = "personalNames";
@SerializedName(SERIALIZED_NAME_PERSONAL_NAMES)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* BatchFirstLastNameGeoIn
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class BatchFirstLastNameGeoIn {
public static final String SERIALIZED_NAME_PERSONAL_NAMES = "personalNames";
@SerializedName(SERIALIZED_NAME_PERSONAL_NAMES)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* BatchFirstLastNameGeoZippedIn
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class BatchFirstLastNameGeoZippedIn {
public static final String SERIALIZED_NAME_PERSONAL_NAMES = "personalNames";
@SerializedName(SERIALIZED_NAME_PERSONAL_NAMES)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* BatchFirstLastNameIn
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class BatchFirstLastNameIn {
public static final String SERIALIZED_NAME_PERSONAL_NAMES = "personalNames";
@SerializedName(SERIALIZED_NAME_PERSONAL_NAMES)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* Represents the output of inferring the LIKELY origin from a list of personal names.
*/
@ApiModel(description = "Represents the output of inferring the LIKELY origin from a list of personal names.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class BatchFirstLastNameOriginedOut {
public static final String SERIALIZED_NAME_PERSONAL_NAMES = "personalNames";
@SerializedName(SERIALIZED_NAME_PERSONAL_NAMES)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* Represents the output of inferring the LIKELY country and phone code of personal names+phones.
*/
@ApiModel(description = "Represents the output of inferring the LIKELY country and phone code of personal names+phones.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class BatchFirstLastNamePhoneCodedOut {
public static final String SERIALIZED_NAME_PERSONAL_NAMES_WITH_PHONE_NUMBERS = "personalNamesWithPhoneNumbers";
@SerializedName(SERIALIZED_NAME_PERSONAL_NAMES_WITH_PHONE_NUMBERS)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* BatchFirstLastNamePhoneNumberGeoIn
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class BatchFirstLastNamePhoneNumberGeoIn {
public static final String SERIALIZED_NAME_PERSONAL_NAMES_WITH_PHONE_NUMBERS = "personalNamesWithPhoneNumbers";
@SerializedName(SERIALIZED_NAME_PERSONAL_NAMES_WITH_PHONE_NUMBERS)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* BatchFirstLastNamePhoneNumberIn
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class BatchFirstLastNamePhoneNumberIn {
public static final String SERIALIZED_NAME_PERSONAL_NAMES_WITH_PHONE_NUMBERS = "personalNamesWithPhoneNumbers";
@SerializedName(SERIALIZED_NAME_PERSONAL_NAMES_WITH_PHONE_NUMBERS)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* Represents the output of inferring the LIKELY US &#39;race/ethnicity&#39; from a personal name, given US country of residence and (optionally) a ZIP5 code.
*/
@ApiModel(description = "Represents the output of inferring the LIKELY US 'race/ethnicity' from a personal name, given US country of residence and (optionally) a ZIP5 code.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class BatchFirstLastNameUSRaceEthnicityOut {
public static final String SERIALIZED_NAME_PERSONAL_NAMES = "personalNames";
@SerializedName(SERIALIZED_NAME_PERSONAL_NAMES)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* BatchMatchPersonalFirstLastNameIn
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class BatchMatchPersonalFirstLastNameIn {
public static final String SERIALIZED_NAME_PERSONAL_NAMES = "personalNames";
@SerializedName(SERIALIZED_NAME_PERSONAL_NAMES)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* BatchNameMatchCandidatesOut
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class BatchNameMatchCandidatesOut {
public static final String SERIALIZED_NAME_NAMES_AND_MATCH_CANDIDATES = "namesAndMatchCandidates";
@SerializedName(SERIALIZED_NAME_NAMES_AND_MATCH_CANDIDATES)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* BatchNameMatchedOut
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class BatchNameMatchedOut {
public static final String SERIALIZED_NAME_MATCHED_NAMES = "matchedNames";
@SerializedName(SERIALIZED_NAME_MATCHED_NAMES)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* BatchParsedFullNameGeoIn
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-10-28T19:07:05.363+01:00[Europe/Berlin]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2019-11-04T11:52:46.102+01:00[Europe/Berlin]")
public class BatchParsedFullNameGeoIn {
public static final String SERIALIZED_NAME_PERSONAL_NAMES = "personalNames";
@SerializedName(SERIALIZED_NAME_PERSONAL_NAMES)
Expand Down
Loading

0 comments on commit cf5ba14

Please sign in to comment.