From c27b1f9bc8935c5350613c58b94a5b8e95eeb6eb Mon Sep 17 00:00:00 2001 From: Zach Ebner Date: Fri, 10 Mar 2023 10:14:53 -0600 Subject: [PATCH 1/7] adding new job parsing output fields --- .../sovren/models/job/ApplicationDetails.java | 36 ++++++++++++ .../java/com/sovren/models/job/ParsedJob.java | 57 +++++++++++++++++++ .../java/com/sovren/models/job/PayRange.java | 23 ++++++++ 3 files changed, 116 insertions(+) create mode 100644 src/main/java/com/sovren/models/job/ApplicationDetails.java create mode 100644 src/main/java/com/sovren/models/job/PayRange.java diff --git a/src/main/java/com/sovren/models/job/ApplicationDetails.java b/src/main/java/com/sovren/models/job/ApplicationDetails.java new file mode 100644 index 000000000..8ac0e450c --- /dev/null +++ b/src/main/java/com/sovren/models/job/ApplicationDetails.java @@ -0,0 +1,36 @@ +// Copyright © 2023 Sovren Group, Inc. All rights reserved. +// This file is provided for use by, or on behalf of, Sovren licensees +// within the terms of their license of Sovren products or Sovren customers +// within the Terms of Service pertaining to the Sovren SaaS products. + +package com.sovren.models.job; + +import java.time.LocalDate; +import com.sovren.models.SovrenPrimitive; + +/** +* An object containing details about the application process +*/ +public class ApplicationDetails { + + /** Full text description of the application process*/ + public String ApplicationDescription; + + /** Full name of the main contact person for the application*/ + public String ContactPerson; + + /** Normalized phone of the organization with international calling prefix. Can contain multiple values (concatenated by comma)*/ + public String ContactPhone; + + /** Displayable email of the organization. Can contain multiple values (concatenated by comma)*/ + public String ContactEmail; + + /** Validated and normalized displayable website of the organization. Can contain multiple values (concatenated by comma)*/ + public String Website; + + /** Deadline to apply for the job*/ + public SovrenPrimitive ApplicationDeadline; + + /** Any reference number found for the job application*/ + public String ReferenceNumber; +} diff --git a/src/main/java/com/sovren/models/job/ParsedJob.java b/src/main/java/com/sovren/models/job/ParsedJob.java index 1232d30ed..9e3226479 100644 --- a/src/main/java/com/sovren/models/job/ParsedJob.java +++ b/src/main/java/com/sovren/models/job/ParsedJob.java @@ -85,6 +85,63 @@ public class ParsedJob extends ParsedDocument { /** The location of the job, if listed. Used by Sovren for AI Matching*/ public Location CurrentLocation; + + /** Information about the application process.*/ + public ApplicationDetails ApplicationDetails; + + /** + * The salary found for the position + * If no lexical cues are available from the vacancy, the time scale is guessed based on predefined salary ranges. Here are some rough salary ranges (note: country-specific conditions may apply): + * + * If a monthly salary is extracted, to get the annual salary it is multiplied by 14 (if country = AT) or 12 (all other countries). + */ + public PayRange Salary; + + /** The minimum number of working hours per week*/ + public SovrenPrimitive MinimumWorkingHours; + + /** The maximum number of working hours per week*/ + public SovrenPrimitive MaximumWorkingHours; + + /** Whether or not the position is remote. Includes fulltime, partial and temporary remote working opportunities*/ + public boolean IsRemote; + + /** Any drivers license requirements*/ + public List DriversLicenses; + + /** + * The type of employment. One of: + *
    + *
  • unspecified
  • + *
  • fulltime
  • + *
  • parttime
  • + *
  • fulltime/parttime
  • + *
+ */ + public String EmploymentType; + + /** + * The contract type. One of: + *
    + *
  • unspecified
  • + *
  • permanent
  • + *
  • temporary
  • + *
  • possibly_permanent
  • + *
  • interim
  • + *
  • franchise
  • + *
  • side
  • + *
  • internship
  • + *
  • voluntary
  • + *
  • freelance
  • + *
  • apprenticeship
  • + *
  • assisted
  • + *
+ */ + public String ContractType; /** Terms of interest listed in the job*/ public List TermsOfInterest; diff --git a/src/main/java/com/sovren/models/job/PayRange.java b/src/main/java/com/sovren/models/job/PayRange.java new file mode 100644 index 000000000..188ea5f30 --- /dev/null +++ b/src/main/java/com/sovren/models/job/PayRange.java @@ -0,0 +1,23 @@ +// Copyright © 2023 Sovren Group, Inc. All rights reserved. +// This file is provided for use by, or on behalf of, Sovren licensees +// within the terms of their license of Sovren products or Sovren customers +// within the Terms of Service pertaining to the Sovren SaaS products. + +package com.sovren.models.job; + +import com.sovren.models.SovrenPrimitive; + +/** +* An object containing details about a job position's pay. +*/ +public class PayRange { + + /** The normalized minimum yearly salary*/ + public SovrenPrimitive Minimum; + + /** The normalized maximum yearly salary*/ + public SovrenPrimitive Maximum; + + /** Currency code (ISO 4217) applied to the {@link #Minimum} and {@link #Maximum}*/ + public String Currency; +} From b8f0bcc78ce7df784ea7ee5c127f64763ae23216 Mon Sep 17 00:00:00 2001 From: Zach Ebner Date: Wed, 5 Apr 2023 10:34:53 -0500 Subject: [PATCH 2/7] Adding RawMinimum and RawMaximum fields to Job Salary --- src/main/java/com/sovren/models/job/ParsedJob.java | 2 +- src/main/java/com/sovren/models/job/PayRange.java | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/sovren/models/job/ParsedJob.java b/src/main/java/com/sovren/models/job/ParsedJob.java index 9e3226479..b16b225b6 100644 --- a/src/main/java/com/sovren/models/job/ParsedJob.java +++ b/src/main/java/com/sovren/models/job/ParsedJob.java @@ -59,7 +59,7 @@ public class ParsedJob extends ParsedDocument { /** The end date for the job, if listed.*/ public SovrenPrimitive EndDate; - /** The full job description*/ + /** Section containing information about the job. Job description strictly includes duties, tasks, and responsibilities for the role with as little irrelevant text as possible.*/ public String JobDescription; /** Any requirement listed by the job*/ diff --git a/src/main/java/com/sovren/models/job/PayRange.java b/src/main/java/com/sovren/models/job/PayRange.java index 188ea5f30..2c0c3a5bc 100644 --- a/src/main/java/com/sovren/models/job/PayRange.java +++ b/src/main/java/com/sovren/models/job/PayRange.java @@ -18,6 +18,12 @@ public class PayRange { /** The normalized maximum yearly salary*/ public SovrenPrimitive Maximum; + /** The raw, un-normalized, minimum value. This is returned as is in the text, so there is no guarantee that it will evaluate to a valid number and not a string.*/ + public String RawMinimum; + + /** The raw, un-normalized, maximum value. This is returned as is in the text, so there is no guarantee that it will evaluate to a valid number and not a string.*/ + public String RawMaximum; + /** Currency code (ISO 4217) applied to the {@link #Minimum} and {@link #Maximum}*/ public String Currency; } From 088365a1d516c47131df801c98197c5bdbd9aa32 Mon Sep 17 00:00:00 2001 From: Zach Ebner Date: Fri, 28 Apr 2023 16:20:52 -0500 Subject: [PATCH 3/7] Adding new 9.14.0 fields --- .../sovren/models/job/ApplicationDetails.java | 3 +++ .../java/com/sovren/models/job/JobDegree.java | 3 +++ .../java/com/sovren/models/job/ParsedJob.java | 16 ++++++++++++++-- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/sovren/models/job/ApplicationDetails.java b/src/main/java/com/sovren/models/job/ApplicationDetails.java index 8ac0e450c..da94de949 100644 --- a/src/main/java/com/sovren/models/job/ApplicationDetails.java +++ b/src/main/java/com/sovren/models/job/ApplicationDetails.java @@ -31,6 +31,9 @@ public class ApplicationDetails { /** Deadline to apply for the job*/ public SovrenPrimitive ApplicationDeadline; + /** Date the job was posted*/ + public SovrenPrimitive PostedDate; + /** Any reference number found for the job application*/ public String ReferenceNumber; } diff --git a/src/main/java/com/sovren/models/job/JobDegree.java b/src/main/java/com/sovren/models/job/JobDegree.java index 9680e70d6..fbba25c00 100644 --- a/src/main/java/com/sovren/models/job/JobDegree.java +++ b/src/main/java/com/sovren/models/job/JobDegree.java @@ -15,4 +15,7 @@ public class JobDegree { /** The type of the educational degree*/ public String Type; + + /** The normalized, local education level based on the job's country. Returns the Code ID based on the table found here.*/ + public String LocalEducationLevel; } diff --git a/src/main/java/com/sovren/models/job/ParsedJob.java b/src/main/java/com/sovren/models/job/ParsedJob.java index b16b225b6..a0ec53696 100644 --- a/src/main/java/com/sovren/models/job/ParsedJob.java +++ b/src/main/java/com/sovren/models/job/ParsedJob.java @@ -53,7 +53,7 @@ public class ParsedJob extends ParsedDocument { /** The required educational degree, if listed. Used by Sovren for AI Matching*/ public String RequiredDegree; - /** The start date for the job, if listed.*/ + /** The start date of the job.*/ public SovrenPrimitive StartDate; /** The end date for the job, if listed.*/ @@ -62,8 +62,11 @@ public class ParsedJob extends ParsedDocument { /** Section containing information about the job. Job description strictly includes duties, tasks, and responsibilities for the role with as little irrelevant text as possible.*/ public String JobDescription; - /** Any requirement listed by the job*/ + /** Full text of any requirements listed by the job.*/ public String JobRequirements; + + /** Full text of any benefits listed by the job.*/ + public String Benefits; /** The job titles found in the job. Used by Sovren for AI Matching*/ public JobTitles JobTitles; @@ -107,6 +110,15 @@ public class ParsedJob extends ParsedDocument { /** The maximum number of working hours per week*/ public SovrenPrimitive MaximumWorkingHours; + /** + * The type of working hours. One of: + *
    + *
  • regular
  • + *
  • irregular
  • + *
+ */ + public String WorkingHours; + /** Whether or not the position is remote. Includes fulltime, partial and temporary remote working opportunities*/ public boolean IsRemote; From 901bece1e65ddaab8b0ca31093a045bbf3f064fb Mon Sep 17 00:00:00 2001 From: Zach Ebner Date: Tue, 2 May 2023 11:47:41 -0500 Subject: [PATCH 4/7] Adding EmployerDescription --- src/main/java/com/sovren/models/job/ParsedJob.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/sovren/models/job/ParsedJob.java b/src/main/java/com/sovren/models/job/ParsedJob.java index a0ec53696..b5cf8cb5c 100644 --- a/src/main/java/com/sovren/models/job/ParsedJob.java +++ b/src/main/java/com/sovren/models/job/ParsedJob.java @@ -67,6 +67,9 @@ public class ParsedJob extends ParsedDocument { /** Full text of any benefits listed by the job.*/ public String Benefits; + + /** Full text of any employer description listed by the job.*/ + public String EmployerDescription; /** The job titles found in the job. Used by Sovren for AI Matching*/ public JobTitles JobTitles; @@ -86,7 +89,7 @@ public class ParsedJob extends ParsedDocument { /** Any languages listed in the job. Used by Sovren for AI Matching*/ public List LanguageCodes; - /** The location of the job, if listed. Used by Sovren for AI Matching*/ + /** The location of the job, if listed. If no job location is found, this is the location of the company, if listed.*/ public Location CurrentLocation; /** Information about the application process.*/ From 0608814e354c7b0c19b5b0e88721e0e506505593 Mon Sep 17 00:00:00 2001 From: Continuous Integration Date: Tue, 9 May 2023 17:47:32 +0000 Subject: [PATCH 5/7] --- auto-generation of javadocs --- --- docs/allclasses-frame.html | 6 +- docs/allclasses-noframe.html | 6 +- docs/com/sovren/DataCenter.html | 4 +- docs/com/sovren/SovrenClient.html | 4 +- docs/com/sovren/SovrenUIClient.html | 4 +- docs/com/sovren/class-use/DataCenter.html | 4 +- docs/com/sovren/class-use/SovrenClient.html | 4 +- docs/com/sovren/class-use/SovrenUIClient.html | 4 +- .../sovren/exceptions/SovrenException.html | 4 +- .../exceptions/SovrenGeocodeJobException.html | 4 +- .../SovrenGeocodeResumeException.html | 4 +- .../exceptions/SovrenIndexJobException.html | 4 +- .../SovrenIndexResumeException.html | 4 +- ...enProfessionNormalizationJobException.html | 4 +- ...rofessionNormalizationResumeException.html | 4 +- .../exceptions/SovrenUsableJobException.html | 4 +- .../SovrenUsableResumeException.html | 4 +- .../exceptions/class-use/SovrenException.html | 76 ++-- .../class-use/SovrenGeocodeJobException.html | 4 +- .../SovrenGeocodeResumeException.html | 4 +- .../class-use/SovrenIndexJobException.html | 4 +- .../class-use/SovrenIndexResumeException.html | 4 +- ...enProfessionNormalizationJobException.html | 4 +- ...rofessionNormalizationResumeException.html | 4 +- .../class-use/SovrenUsableJobException.html | 4 +- .../SovrenUsableResumeException.html | 4 +- docs/com/sovren/exceptions/package-frame.html | 4 +- .../sovren/exceptions/package-summary.html | 4 +- docs/com/sovren/exceptions/package-tree.html | 4 +- docs/com/sovren/exceptions/package-use.html | 4 +- docs/com/sovren/http/HttpResponse.html | 4 +- .../sovren/http/class-use/HttpResponse.html | 4 +- docs/com/sovren/http/package-frame.html | 4 +- docs/com/sovren/http/package-summary.html | 4 +- docs/com/sovren/http/package-tree.html | 4 +- docs/com/sovren/http/package-use.html | 4 +- docs/com/sovren/models/Document.html | 4 +- docs/com/sovren/models/GeoCoordinates.html | 4 +- .../sovren/models/GeocodedCoordinates.html | 4 +- docs/com/sovren/models/Location.html | 4 +- docs/com/sovren/models/ParsedDocument.html | 4 +- .../sovren/models/ParsedDocumentMetadata.html | 4 +- docs/com/sovren/models/SovrenDate.html | 4 +- docs/com/sovren/models/SovrenPrimitive.html | 4 +- docs/com/sovren/models/api/AccountInfo.html | 4 +- docs/com/sovren/models/api/ApiResponse.html | 4 +- .../sovren/models/api/ApiResponseInfo.html | 4 +- .../models/api/ApiResponseInfoLite.html | 4 +- .../sovren/models/api/ISovrenResponse.html | 4 +- .../api/account/GetAccountInfoResponse.html | 4 +- .../class-use/GetAccountInfoResponse.html | 4 +- .../models/api/account/package-frame.html | 4 +- .../models/api/account/package-summary.html | 4 +- .../models/api/account/package-tree.html | 4 +- .../models/api/account/package-use.html | 4 +- .../BimetricScoreJobRequest.html | 4 +- .../bimetricscoring/BimetricScoreRequest.html | 4 +- .../BimetricScoreResponse.html | 4 +- .../BimetricScoreResponseValue.html | 4 +- .../bimetricscoring/BimetricScoreResult.html | 4 +- .../BimetricScoreResumeRequest.html | 4 +- .../api/bimetricscoring/IParsedDocWithId.html | 4 +- .../api/bimetricscoring/ParsedJobWithId.html | 4 +- .../bimetricscoring/ParsedResumeWithId.html | 4 +- .../class-use/BimetricScoreJobRequest.html | 4 +- .../class-use/BimetricScoreRequest.html | 4 +- .../class-use/BimetricScoreResponse.html | 4 +- .../class-use/BimetricScoreResponseValue.html | 4 +- .../class-use/BimetricScoreResult.html | 4 +- .../class-use/BimetricScoreResumeRequest.html | 4 +- .../class-use/IParsedDocWithId.html | 28 +- .../class-use/ParsedJobWithId.html | 16 +- .../class-use/ParsedResumeWithId.html | 16 +- .../api/bimetricscoring/package-frame.html | 4 +- .../api/bimetricscoring/package-summary.html | 4 +- .../api/bimetricscoring/package-tree.html | 4 +- .../api/bimetricscoring/package-use.html | 4 +- .../models/api/class-use/AccountInfo.html | 4 +- .../models/api/class-use/ApiResponse.html | 4 +- .../models/api/class-use/ApiResponseInfo.html | 4 +- .../api/class-use/ApiResponseInfoLite.html | 4 +- .../models/api/class-use/ISovrenResponse.html | 4 +- .../dataenrichment/AutocompleteRequest.html | 4 +- .../dataenrichment/GetMetadataResponse.html | 4 +- .../api/dataenrichment/TaxonomyFormat.html | 4 +- .../class-use/AutocompleteRequest.html | 4 +- .../class-use/GetMetadataResponse.html | 4 +- .../class-use/TaxonomyFormat.html | 4 +- .../request/CompareProfessionsRequest.html | 4 +- .../CompareSkillsToProfessionRequest.html | 4 +- .../request/SuggestProfessionsRequest.html | 4 +- .../request/SuggestSkillsRequest.html | 4 +- .../class-use/CompareProfessionsRequest.html | 4 +- .../CompareSkillsToProfessionRequest.html | 4 +- .../class-use/SuggestProfessionsRequest.html | 4 +- .../class-use/SuggestSkillsRequest.html | 4 +- .../ontology/request/package-frame.html | 4 +- .../ontology/request/package-summary.html | 4 +- .../ontology/request/package-tree.html | 4 +- .../ontology/request/package-use.html | 4 +- .../response/CompareProfessionsResponse.html | 4 +- .../CompareProfessionsResponseValue.html | 4 +- .../CompareSkillsToProfessionResponse.html | 4 +- ...ompareSkillsToProfessionResponseValue.html | 4 +- .../response/ProfessionExclusiveSkills.html | 4 +- .../ontology/response/SkillScore.html | 4 +- .../response/SuggestProfessionsResponse.html | 4 +- .../SuggestProfessionsResponseValue.html | 4 +- .../response/SuggestSkillsResponse.html | 4 +- .../response/SuggestSkillsResponseValue.html | 4 +- .../response/SuggestedProfession.html | 4 +- .../class-use/CompareProfessionsResponse.html | 4 +- .../CompareProfessionsResponseValue.html | 4 +- .../CompareSkillsToProfessionResponse.html | 4 +- ...ompareSkillsToProfessionResponseValue.html | 4 +- .../class-use/ProfessionExclusiveSkills.html | 4 +- .../response/class-use/SkillScore.html | 4 +- .../class-use/SuggestProfessionsResponse.html | 4 +- .../SuggestProfessionsResponseValue.html | 4 +- .../class-use/SuggestSkillsResponse.html | 4 +- .../class-use/SuggestSkillsResponseValue.html | 4 +- .../class-use/SuggestedProfession.html | 4 +- .../ontology/response/package-frame.html | 4 +- .../ontology/response/package-summary.html | 4 +- .../ontology/response/package-tree.html | 4 +- .../ontology/response/package-use.html | 4 +- .../api/dataenrichment/package-frame.html | 4 +- .../api/dataenrichment/package-summary.html | 4 +- .../api/dataenrichment/package-tree.html | 4 +- .../api/dataenrichment/package-use.html | 4 +- .../professions/ONETVersion.html | 4 +- .../ProfessionNormalizationVersions.html | 4 +- .../professions/class-use/ONETVersion.html | 4 +- .../ProfessionNormalizationVersions.html | 4 +- .../professions/package-frame.html | 4 +- .../professions/package-summary.html | 4 +- .../professions/package-tree.html | 4 +- .../professions/package-use.html | 4 +- .../request/LookupProfessionCodesRequest.html | 4 +- .../request/NormalizeProfessionsRequest.html | 4 +- .../LookupProfessionCodesRequest.html | 4 +- .../NormalizeProfessionsRequest.html | 4 +- .../professions/request/package-frame.html | 4 +- .../professions/request/package-summary.html | 4 +- .../professions/request/package-tree.html | 4 +- .../professions/request/package-use.html | 4 +- .../GetProfessionsTaxonomyResponse.html | 4 +- .../GetProfessionsTaxonomyResponseValue.html | 4 +- .../LookupProfessionCodesResponse.html | 4 +- .../LookupProfessionCodesResponseValue.html | 4 +- .../NormalizeProfessionsResponse.html | 4 +- .../NormalizeProfessionsResponseValue.html | 4 +- .../ProfessionsAutoCompleteResponse.html | 4 +- .../ProfessionsAutoCompleteResponseValue.html | 4 +- .../GetProfessionsTaxonomyResponse.html | 4 +- .../GetProfessionsTaxonomyResponseValue.html | 4 +- .../LookupProfessionCodesResponse.html | 4 +- .../LookupProfessionCodesResponseValue.html | 4 +- .../NormalizeProfessionsResponse.html | 4 +- .../NormalizeProfessionsResponseValue.html | 4 +- .../ProfessionsAutoCompleteResponse.html | 4 +- .../ProfessionsAutoCompleteResponseValue.html | 4 +- .../professions/response/package-frame.html | 4 +- .../professions/response/package-summary.html | 4 +- .../professions/response/package-tree.html | 4 +- .../professions/response/package-use.html | 4 +- .../skills/request/ExtractSkillsRequest.html | 4 +- .../skills/request/LookupSkillsRequest.html | 4 +- .../request/NormalizeSkillsRequest.html | 4 +- .../request/SkillsAutoCompleteRequest.html | 4 +- .../class-use/ExtractSkillsRequest.html | 4 +- .../class-use/LookupSkillsRequest.html | 4 +- .../class-use/NormalizeSkillsRequest.html | 4 +- .../class-use/SkillsAutoCompleteRequest.html | 4 +- .../skills/request/package-frame.html | 4 +- .../skills/request/package-summary.html | 4 +- .../skills/request/package-tree.html | 4 +- .../skills/request/package-use.html | 4 +- .../response/AutoCompleteSkillsResponse.html | 4 +- .../AutocompleteSkillsResponseValue.html | 4 +- .../response/ExtractSkillsResponse.html | 4 +- .../response/ExtractSkillsResponseValue.html | 4 +- .../response/GetSkillsTaxonomyResponse.html | 4 +- .../GetSkillsTaxonomyResponseValue.html | 4 +- .../response/LookupSkillCodesResponse.html | 4 +- .../LookupSkillCodesResponseValue.html | 4 +- .../response/NormalizeSkillsResponse.html | 4 +- .../NormalizeSkillsResponseValue.html | 4 +- .../class-use/AutoCompleteSkillsResponse.html | 4 +- .../AutocompleteSkillsResponseValue.html | 4 +- .../class-use/ExtractSkillsResponse.html | 4 +- .../class-use/ExtractSkillsResponseValue.html | 4 +- .../class-use/GetSkillsTaxonomyResponse.html | 4 +- .../GetSkillsTaxonomyResponseValue.html | 4 +- .../class-use/LookupSkillCodesResponse.html | 4 +- .../LookupSkillCodesResponseValue.html | 4 +- .../class-use/NormalizeSkillsResponse.html | 4 +- .../NormalizeSkillsResponseValue.html | 4 +- .../skills/response/package-frame.html | 4 +- .../skills/response/package-summary.html | 4 +- .../skills/response/package-tree.html | 4 +- .../skills/response/package-use.html | 4 +- .../sovren/models/api/geocoding/Address.html | 4 +- .../geocoding/GeocodeAndIndexJobRequest.html | 4 +- .../geocoding/GeocodeAndIndexJobResponse.html | 4 +- .../GeocodeAndIndexJobResponseValue.html | 4 +- .../api/geocoding/GeocodeAndIndexRequest.html | 4 +- .../GeocodeAndIndexResponseValue.html | 4 +- .../GeocodeAndIndexResumeRequest.html | 4 +- .../GeocodeAndIndexResumeResponse.html | 4 +- .../GeocodeAndIndexResumeResponseValue.html | 4 +- .../api/geocoding/GeocodeCredentials.html | 4 +- .../api/geocoding/GeocodeJobRequest.html | 4 +- .../api/geocoding/GeocodeJobResponse.html | 4 +- .../geocoding/GeocodeJobResponseValue.html | 4 +- .../models/api/geocoding/GeocodeOptions.html | 4 +- .../api/geocoding/GeocodeOptionsBase.html | 4 +- .../models/api/geocoding/GeocodeProvider.html | 4 +- .../api/geocoding/GeocodeResumeRequest.html | 4 +- .../api/geocoding/GeocodeResumeResponse.html | 4 +- .../geocoding/GeocodeResumeResponseValue.html | 4 +- .../api/geocoding/class-use/Address.html | 4 +- .../class-use/GeocodeAndIndexJobRequest.html | 4 +- .../class-use/GeocodeAndIndexJobResponse.html | 4 +- .../GeocodeAndIndexJobResponseValue.html | 4 +- .../class-use/GeocodeAndIndexRequest.html | 4 +- .../GeocodeAndIndexResponseValue.html | 4 +- .../GeocodeAndIndexResumeRequest.html | 4 +- .../GeocodeAndIndexResumeResponse.html | 4 +- .../GeocodeAndIndexResumeResponseValue.html | 4 +- .../class-use/GeocodeCredentials.html | 4 +- .../class-use/GeocodeJobRequest.html | 4 +- .../class-use/GeocodeJobResponse.html | 4 +- .../class-use/GeocodeJobResponseValue.html | 4 +- .../geocoding/class-use/GeocodeOptions.html | 4 +- .../class-use/GeocodeOptionsBase.html | 4 +- .../geocoding/class-use/GeocodeProvider.html | 4 +- .../class-use/GeocodeResumeRequest.html | 4 +- .../class-use/GeocodeResumeResponse.html | 4 +- .../class-use/GeocodeResumeResponseValue.html | 4 +- .../models/api/geocoding/package-frame.html | 4 +- .../models/api/geocoding/package-summary.html | 4 +- .../models/api/geocoding/package-tree.html | 4 +- .../models/api/geocoding/package-use.html | 4 +- .../api/indexes/CreateIndexRequest.html | 4 +- .../api/indexes/CreateIndexResponse.html | 4 +- .../api/indexes/DeleteDocumentResponse.html | 4 +- .../api/indexes/DeleteIndexResponse.html | 4 +- .../DeleteMultipleDocumentsResponse.html | 4 +- .../api/indexes/GetAllIndexesResponse.html | 4 +- .../models/api/indexes/GetIndexResponse.html | 4 +- .../models/api/indexes/GetJobResponse.html | 4 +- .../models/api/indexes/GetResumeResponse.html | 4 +- .../api/indexes/IndexDocumentRequest.html | 4 +- .../api/indexes/IndexDocumentResponse.html | 4 +- .../models/api/indexes/IndexJobInfo.html | 4 +- .../models/api/indexes/IndexJobRequest.html | 4 +- .../indexes/IndexMultipleDocumentInfo.html | 4 +- .../IndexMultipleDocumentsResponse.html | 4 +- .../IndexMultipleDocumentsResponseValue.html | 4 +- .../api/indexes/IndexMultipleJobsRequest.html | 4 +- .../indexes/IndexMultipleResumesRequest.html | 4 +- .../models/api/indexes/IndexResumeInfo.html | 4 +- .../api/indexes/IndexResumeRequest.html | 4 +- .../api/indexes/IndexSingleDocumentInfo.html | 4 +- .../api/indexes/IndexedDocumentInfo.html | 4 +- .../indexes/UpdateUserDefinedTagsRequest.html | 4 +- .../UpdateUserDefinedTagsResponse.html | 4 +- .../api/indexes/UserDefinedTagsMethod.html | 4 +- .../indexes/class-use/CreateIndexRequest.html | 4 +- .../class-use/CreateIndexResponse.html | 4 +- .../class-use/DeleteDocumentResponse.html | 4 +- .../class-use/DeleteIndexResponse.html | 4 +- .../DeleteMultipleDocumentsResponse.html | 4 +- .../class-use/GetAllIndexesResponse.html | 4 +- .../indexes/class-use/GetIndexResponse.html | 4 +- .../api/indexes/class-use/GetJobResponse.html | 4 +- .../indexes/class-use/GetResumeResponse.html | 4 +- .../class-use/IndexDocumentRequest.html | 4 +- .../class-use/IndexDocumentResponse.html | 4 +- .../api/indexes/class-use/IndexJobInfo.html | 4 +- .../indexes/class-use/IndexJobRequest.html | 4 +- .../class-use/IndexMultipleDocumentInfo.html | 4 +- .../IndexMultipleDocumentsResponse.html | 4 +- .../IndexMultipleDocumentsResponseValue.html | 4 +- .../class-use/IndexMultipleJobsRequest.html | 4 +- .../IndexMultipleResumesRequest.html | 4 +- .../indexes/class-use/IndexResumeInfo.html | 4 +- .../indexes/class-use/IndexResumeRequest.html | 4 +- .../class-use/IndexSingleDocumentInfo.html | 4 +- .../class-use/IndexedDocumentInfo.html | 4 +- .../UpdateUserDefinedTagsRequest.html | 4 +- .../UpdateUserDefinedTagsResponse.html | 4 +- .../class-use/UserDefinedTagsMethod.html | 4 +- .../models/api/indexes/package-frame.html | 4 +- .../models/api/indexes/package-summary.html | 4 +- .../models/api/indexes/package-tree.html | 4 +- .../models/api/indexes/package-use.html | 4 +- .../api/matching/BaseScoredResponseValue.html | 4 +- .../BaseSearchMatchResponseValue.html | 4 +- .../models/api/matching/CategoryWeights.html | 4 +- .../models/api/matching/MatchJobRequest.html | 4 +- .../models/api/matching/MatchResponse.html | 4 +- .../api/matching/MatchResponseValue.html | 4 +- .../api/matching/MatchResumeRequest.html | 4 +- .../models/api/matching/SearchRequest.html | 4 +- .../models/api/matching/SearchResponse.html | 4 +- .../api/matching/SearchResponseValue.html | 4 +- .../class-use/BaseScoredResponseValue.html | 4 +- .../BaseSearchMatchResponseValue.html | 4 +- .../matching/class-use/CategoryWeights.html | 64 +-- .../matching/class-use/MatchJobRequest.html | 4 +- .../api/matching/class-use/MatchResponse.html | 4 +- .../class-use/MatchResponseValue.html | 4 +- .../class-use/MatchResumeRequest.html | 4 +- .../api/matching/class-use/SearchRequest.html | 4 +- .../matching/class-use/SearchResponse.html | 4 +- .../class-use/SearchResponseValue.html | 4 +- .../models/api/matching/package-frame.html | 4 +- .../models/api/matching/package-summary.html | 4 +- .../models/api/matching/package-tree.html | 4 +- .../models/api/matching/package-use.html | 4 +- .../api/matching/request/DistanceUnit.html | 4 +- .../api/matching/request/FilterCriteria.html | 4 +- .../api/matching/request/FilterLocation.html | 4 +- .../api/matching/request/IntegerRange.html | 4 +- .../api/matching/request/JobTitleFilter.html | 4 +- .../matching/request/LocationCriteria.html | 4 +- .../request/MatchByDocumentIdOptions.html | 4 +- .../api/matching/request/MatchRequest.html | 4 +- .../matching/request/PaginationSettings.html | 4 +- .../matching/request/RevisionDateRange.html | 4 +- .../request/SearchMatchRequestBase.html | 4 +- .../matching/request/SearchMatchSettings.html | 4 +- .../request/SkillExperienceLevel.html | 4 +- .../api/matching/request/SkillFilter.html | 4 +- .../request/class-use/DistanceUnit.html | 4 +- .../request/class-use/FilterCriteria.html | 52 +-- .../request/class-use/FilterLocation.html | 4 +- .../request/class-use/IntegerRange.html | 4 +- .../request/class-use/JobTitleFilter.html | 4 +- .../request/class-use/LocationCriteria.html | 4 +- .../class-use/MatchByDocumentIdOptions.html | 4 +- .../request/class-use/MatchRequest.html | 4 +- .../request/class-use/PaginationSettings.html | 16 +- .../request/class-use/RevisionDateRange.html | 4 +- .../class-use/SearchMatchRequestBase.html | 4 +- .../class-use/SearchMatchSettings.html | 76 ++-- .../class-use/SkillExperienceLevel.html | 4 +- .../request/class-use/SkillFilter.html | 4 +- .../api/matching/request/package-frame.html | 4 +- .../api/matching/request/package-summary.html | 4 +- .../api/matching/request/package-tree.html | 4 +- .../api/matching/request/package-use.html | 4 +- .../matching/response/CategoryScoreData.html | 4 +- .../response/CategoryScoreEvidence.html | 4 +- .../matching/response/DocumentTaxonomies.html | 4 +- .../matching/response/EducationScoreData.html | 4 +- .../matching/response/EnrichedScoreData.html | 4 +- .../api/matching/response/FoundJobTitle.html | 4 +- .../api/matching/response/FoundSkill.html | 4 +- .../matching/response/JobTitlesScoreData.html | 4 +- .../response/ManagementLevelScoreData.html | 4 +- .../api/matching/response/MatchResult.html | 4 +- .../api/matching/response/SearchResult.html | 4 +- .../response/SimpleCategoryScoreData.html | 4 +- .../matching/response/SkillsScoreData.html | 4 +- .../response/TaxonomiesScoreData.html | 4 +- .../matching/response/TaxonomyEvidence.html | 4 +- .../api/matching/response/TaxonomyInfo.html | 4 +- .../response/class-use/CategoryScoreData.html | 4 +- .../class-use/CategoryScoreEvidence.html | 4 +- .../class-use/DocumentTaxonomies.html | 4 +- .../class-use/EducationScoreData.html | 4 +- .../response/class-use/EnrichedScoreData.html | 4 +- .../response/class-use/FoundJobTitle.html | 4 +- .../response/class-use/FoundSkill.html | 4 +- .../class-use/JobTitlesScoreData.html | 4 +- .../class-use/ManagementLevelScoreData.html | 4 +- .../response/class-use/MatchResult.html | 4 +- .../response/class-use/SearchResult.html | 4 +- .../class-use/SimpleCategoryScoreData.html | 4 +- .../response/class-use/SkillsScoreData.html | 4 +- .../class-use/TaxonomiesScoreData.html | 4 +- .../response/class-use/TaxonomyEvidence.html | 4 +- .../response/class-use/TaxonomyInfo.html | 4 +- .../api/matching/response/package-frame.html | 4 +- .../matching/response/package-summary.html | 4 +- .../api/matching/response/package-tree.html | 4 +- .../api/matching/response/package-use.html | 4 +- .../models/api/matching/ui/FilterToShow.html | 4 +- .../api/matching/ui/GenerateUIResponse.html | 4 +- .../sovren/models/api/matching/ui/Style.html | 4 +- .../models/api/matching/ui/UIOptions.html | 4 +- .../api/matching/ui/UserDefinedTagOption.html | 4 +- .../matching/ui/UserDefinedTagsPicklist.html | 4 +- .../matching/ui/class-use/FilterToShow.html | 4 +- .../ui/class-use/GenerateUIResponse.html | 4 +- .../api/matching/ui/class-use/Style.html | 4 +- .../api/matching/ui/class-use/UIOptions.html | 4 +- .../ui/class-use/UserDefinedTagOption.html | 4 +- .../ui/class-use/UserDefinedTagsPicklist.html | 4 +- .../api/matching/ui/hooks/ClientSideHook.html | 4 +- .../api/matching/ui/hooks/JsAction.html | 4 +- .../api/matching/ui/hooks/ServerSideHook.html | 4 +- .../api/matching/ui/hooks/SourcingHook.html | 4 +- .../api/matching/ui/hooks/UrlAction.html | 4 +- .../api/matching/ui/hooks/UserActionHook.html | 4 +- .../ui/hooks/UserActionHookCollection.html | 4 +- .../ui/hooks/class-use/ClientSideHook.html | 4 +- .../matching/ui/hooks/class-use/JsAction.html | 4 +- .../ui/hooks/class-use/ServerSideHook.html | 4 +- .../ui/hooks/class-use/SourcingHook.html | 4 +- .../ui/hooks/class-use/UrlAction.html | 4 +- .../ui/hooks/class-use/UserActionHook.html | 4 +- .../class-use/UserActionHookCollection.html | 4 +- .../api/matching/ui/hooks/package-frame.html | 4 +- .../matching/ui/hooks/package-summary.html | 4 +- .../api/matching/ui/hooks/package-tree.html | 4 +- .../api/matching/ui/hooks/package-use.html | 4 +- .../models/api/matching/ui/package-frame.html | 4 +- .../api/matching/ui/package-summary.html | 4 +- .../models/api/matching/ui/package-tree.html | 4 +- .../models/api/matching/ui/package-use.html | 4 +- .../ui/request/GenerateUIRequest.html | 4 +- .../matching/ui/request/MatchUISettings.html | 4 +- .../ui/request/UIBimetricScoreJobRequest.html | 4 +- .../request/UIBimetricScoreResumeRequest.html | 4 +- .../request/UIMatchByDocumentIdOptions.html | 4 +- .../ui/request/UIMatchJobRequest.html | 4 +- .../ui/request/UIMatchResumeRequest.html | 4 +- .../matching/ui/request/UISearchRequest.html | 4 +- .../request/class-use/GenerateUIRequest.html | 4 +- .../ui/request/class-use/MatchUISettings.html | 4 +- .../class-use/UIBimetricScoreJobRequest.html | 4 +- .../UIBimetricScoreResumeRequest.html | 4 +- .../class-use/UIMatchByDocumentIdOptions.html | 4 +- .../request/class-use/UIMatchJobRequest.html | 4 +- .../class-use/UIMatchResumeRequest.html | 4 +- .../ui/request/class-use/UISearchRequest.html | 4 +- .../matching/ui/request/package-frame.html | 4 +- .../matching/ui/request/package-summary.html | 4 +- .../api/matching/ui/request/package-tree.html | 4 +- .../api/matching/ui/request/package-use.html | 4 +- docs/com/sovren/models/api/package-frame.html | 4 +- .../sovren/models/api/package-summary.html | 4 +- docs/com/sovren/models/api/package-tree.html | 4 +- docs/com/sovren/models/api/package-use.html | 4 +- .../api/parsing/BaseParseResponseValue.html | 4 +- .../models/api/parsing/BasicParseOptions.html | 4 +- .../api/parsing/ConversionMetadata.html | 4 +- .../models/api/parsing/Conversions.html | 4 +- .../models/api/parsing/ParseJobResponse.html | 4 +- .../api/parsing/ParseJobResponseValue.html | 4 +- .../models/api/parsing/ParseOptions.html | 4 +- .../models/api/parsing/ParseRequest.html | 4 +- .../api/parsing/ParseRequestDetails.html | 4 +- .../api/parsing/ParseResumeResponse.html | 4 +- .../api/parsing/ParseResumeResponseValue.html | 4 +- .../models/api/parsing/ParsingMetadata.html | 4 +- .../api/parsing/ProfessionsSettings.html | 4 +- .../models/api/parsing/SkillsSettings.html | 4 +- .../class-use/BaseParseResponseValue.html | 4 +- .../parsing/class-use/BasicParseOptions.html | 4 +- .../parsing/class-use/ConversionMetadata.html | 4 +- .../api/parsing/class-use/Conversions.html | 4 +- .../parsing/class-use/ParseJobResponse.html | 4 +- .../class-use/ParseJobResponseValue.html | 4 +- .../api/parsing/class-use/ParseOptions.html | 4 +- .../api/parsing/class-use/ParseRequest.html | 4 +- .../class-use/ParseRequestDetails.html | 4 +- .../class-use/ParseResumeResponse.html | 4 +- .../class-use/ParseResumeResponseValue.html | 4 +- .../parsing/class-use/ParsingMetadata.html | 4 +- .../class-use/ProfessionsSettings.html | 4 +- .../api/parsing/class-use/SkillsSettings.html | 4 +- .../models/api/parsing/package-frame.html | 4 +- .../models/api/parsing/package-summary.html | 4 +- .../models/api/parsing/package-tree.html | 4 +- .../models/api/parsing/package-use.html | 4 +- .../com/sovren/models/class-use/Document.html | 4 +- .../models/class-use/GeoCoordinates.html | 4 +- .../models/class-use/GeocodedCoordinates.html | 4 +- .../com/sovren/models/class-use/Location.html | 4 +- .../models/class-use/ParsedDocument.html | 4 +- .../class-use/ParsedDocumentMetadata.html | 4 +- .../sovren/models/class-use/SovrenDate.html | 4 +- .../models/class-use/SovrenPrimitive.html | 56 ++- .../dataenrichment/BasicProfession.html | 4 +- .../models/dataenrichment/ExtractedSkill.html | 4 +- .../dataenrichment/LangDescription.html | 4 +- .../dataenrichment/NormalizedProfession.html | 4 +- .../dataenrichment/NormalizedSkill.html | 4 +- .../models/dataenrichment/Profession.html | 4 +- .../ProfessionClassification.html | 4 +- .../ProfessionMultipleDescriptions.html | 4 +- .../sovren/models/dataenrichment/Skill.html | 4 +- .../dataenrichment/SkillAndConfidence.html | 4 +- .../models/dataenrichment/SkillMatch.html | 4 +- .../SkillMultipleDescriptions.html | 4 +- .../models/dataenrichment/Taxonomy.html | 4 +- .../dataenrichment/TaxonomyMetadata.html | 4 +- .../VersionedProfessionClassification.html | 4 +- .../class-use/BasicProfession.html | 4 +- .../class-use/ExtractedSkill.html | 4 +- .../class-use/LangDescription.html | 8 +- .../class-use/NormalizedProfession.html | 4 +- .../class-use/NormalizedSkill.html | 4 +- .../dataenrichment/class-use/Profession.html | 4 +- .../class-use/ProfessionClassification.html | 4 +- .../ProfessionMultipleDescriptions.html | 4 +- .../dataenrichment/class-use/Skill.html | 12 +- .../class-use/SkillAndConfidence.html | 4 +- .../dataenrichment/class-use/SkillMatch.html | 4 +- .../class-use/SkillMultipleDescriptions.html | 4 +- .../dataenrichment/class-use/Taxonomy.html | 4 +- .../class-use/TaxonomyMetadata.html | 4 +- .../VersionedProfessionClassification.html | 4 +- .../models/dataenrichment/package-frame.html | 4 +- .../dataenrichment/package-summary.html | 4 +- .../models/dataenrichment/package-tree.html | 4 +- .../models/dataenrichment/package-use.html | 4 +- .../sovren/models/job/ApplicationDetails.html | 391 ++++++++++++++++++ docs/com/sovren/models/job/EmployerNames.html | 8 +- docs/com/sovren/models/job/JobDegree.html | 24 +- docs/com/sovren/models/job/JobMetadata.html | 4 +- docs/com/sovren/models/job/JobTitles.html | 4 +- docs/com/sovren/models/job/ParsedJob.html | 250 ++++++++++- docs/com/sovren/models/job/PayRange.html | 343 +++++++++++++++ .../job/class-use/ApplicationDetails.html | 168 ++++++++ .../models/job/class-use/EmployerNames.html | 4 +- .../models/job/class-use/JobDegree.html | 4 +- .../models/job/class-use/JobMetadata.html | 4 +- .../models/job/class-use/JobTitles.html | 4 +- .../models/job/class-use/ParsedJob.html | 20 +- .../sovren/models/job/class-use/PayRange.html | 169 ++++++++ docs/com/sovren/models/job/package-frame.html | 6 +- .../sovren/models/job/package-summary.html | 24 +- docs/com/sovren/models/job/package-tree.html | 6 +- docs/com/sovren/models/job/package-use.html | 22 +- .../models/job/skills/JobNormalizedSkill.html | 4 +- .../sovren/models/job/skills/JobRawSkill.html | 4 +- .../sovren/models/job/skills/JobSkill.html | 4 +- .../models/job/skills/JobSkillVariation.html | 4 +- .../models/job/skills/JobSubTaxonomy.html | 4 +- .../sovren/models/job/skills/JobTaxonomy.html | 4 +- .../models/job/skills/JobTaxonomyRoot.html | 4 +- .../sovren/models/job/skills/JobV2Skills.html | 4 +- .../skills/class-use/JobNormalizedSkill.html | 4 +- .../job/skills/class-use/JobRawSkill.html | 4 +- .../models/job/skills/class-use/JobSkill.html | 4 +- .../skills/class-use/JobSkillVariation.html | 4 +- .../job/skills/class-use/JobSubTaxonomy.html | 4 +- .../job/skills/class-use/JobTaxonomy.html | 4 +- .../job/skills/class-use/JobTaxonomyRoot.html | 4 +- .../job/skills/class-use/JobV2Skills.html | 4 +- .../models/job/skills/package-frame.html | 4 +- .../models/job/skills/package-summary.html | 4 +- .../models/job/skills/package-tree.html | 4 +- .../sovren/models/job/skills/package-use.html | 4 +- docs/com/sovren/models/matching/Index.html | 4 +- .../com/sovren/models/matching/IndexType.html | 4 +- .../models/matching/class-use/Index.html | 4 +- .../models/matching/class-use/IndexType.html | 4 +- .../sovren/models/matching/package-frame.html | 4 +- .../models/matching/package-summary.html | 4 +- .../sovren/models/matching/package-tree.html | 4 +- .../sovren/models/matching/package-use.html | 4 +- docs/com/sovren/models/package-frame.html | 4 +- docs/com/sovren/models/package-summary.html | 4 +- docs/com/sovren/models/package-tree.html | 4 +- docs/com/sovren/models/package-use.html | 4 +- .../com/sovren/models/resume/Association.html | 4 +- .../models/resume/CandidateReference.html | 4 +- .../sovren/models/resume/Certification.html | 4 +- .../models/resume/LanguageCompetency.html | 4 +- .../sovren/models/resume/LicenseDetails.html | 4 +- .../models/resume/NationalIdentity.html | 4 +- .../models/resume/NormalizedString.html | 4 +- .../sovren/models/resume/ParsedResume.html | 4 +- .../models/resume/PersonalAttributes.html | 4 +- docs/com/sovren/models/resume/Salary.html | 4 +- .../models/resume/SectionIdentifier.html | 4 +- .../sovren/models/resume/TrainingDetails.html | 4 +- .../sovren/models/resume/TrainingHistory.html | 4 +- .../models/resume/class-use/Association.html | 4 +- .../resume/class-use/CandidateReference.html | 4 +- .../resume/class-use/Certification.html | 4 +- .../resume/class-use/LanguageCompetency.html | 4 +- .../resume/class-use/LicenseDetails.html | 4 +- .../resume/class-use/NationalIdentity.html | 4 +- .../resume/class-use/NormalizedString.html | 4 +- .../models/resume/class-use/ParsedResume.html | 28 +- .../resume/class-use/PersonalAttributes.html | 4 +- .../models/resume/class-use/Salary.html | 4 +- .../resume/class-use/SectionIdentifier.html | 8 +- .../resume/class-use/TrainingDetails.html | 4 +- .../resume/class-use/TrainingHistory.html | 4 +- .../contactinfo/ContactInformation.html | 4 +- .../models/resume/contactinfo/PersonName.html | 4 +- .../models/resume/contactinfo/Telephone.html | 4 +- .../models/resume/contactinfo/WebAddress.html | 4 +- .../resume/contactinfo/WebAddressType.html | 4 +- .../class-use/ContactInformation.html | 4 +- .../contactinfo/class-use/PersonName.html | 4 +- .../contactinfo/class-use/Telephone.html | 4 +- .../contactinfo/class-use/WebAddress.html | 4 +- .../contactinfo/class-use/WebAddressType.html | 4 +- .../resume/contactinfo/package-frame.html | 4 +- .../resume/contactinfo/package-summary.html | 4 +- .../resume/contactinfo/package-tree.html | 4 +- .../resume/contactinfo/package-use.html | 4 +- .../models/resume/education/Degree.html | 4 +- .../resume/education/EducationDetails.html | 4 +- .../resume/education/EducationHistory.html | 4 +- .../resume/education/GradePointAverage.html | 4 +- .../resume/education/class-use/Degree.html | 4 +- .../education/class-use/EducationDetails.html | 4 +- .../education/class-use/EducationHistory.html | 4 +- .../class-use/GradePointAverage.html | 4 +- .../resume/education/package-frame.html | 4 +- .../resume/education/package-summary.html | 4 +- .../models/resume/education/package-tree.html | 4 +- .../models/resume/education/package-use.html | 4 +- .../models/resume/employment/Bullet.html | 4 +- .../CompanyNameWithProbability.html | 4 +- .../models/resume/employment/Employer.html | 4 +- .../resume/employment/EmploymentHistory.html | 4 +- .../resume/employment/ExperienceSummary.html | 4 +- .../models/resume/employment/JobTitle.html | 4 +- .../ParsingNormalizedProfession.html | 4 +- .../models/resume/employment/Position.html | 4 +- .../employment/ProfessionClassification.html | 4 +- ...nedNormalizedProfessionClassification.html | 4 +- .../resume/employment/class-use/Bullet.html | 4 +- .../class-use/CompanyNameWithProbability.html | 4 +- .../resume/employment/class-use/Employer.html | 4 +- .../class-use/EmploymentHistory.html | 4 +- .../class-use/ExperienceSummary.html | 4 +- .../resume/employment/class-use/JobTitle.html | 4 +- .../ParsingNormalizedProfession.html | 4 +- .../resume/employment/class-use/Position.html | 4 +- .../class-use/ProfessionClassification.html | 4 +- ...nedNormalizedProfessionClassification.html | 4 +- .../resume/employment/package-frame.html | 4 +- .../resume/employment/package-summary.html | 4 +- .../resume/employment/package-tree.html | 4 +- .../models/resume/employment/package-use.html | 4 +- .../models/resume/metadata/ReservedData.html | 4 +- .../resume/metadata/ResumeMetadata.html | 4 +- .../metadata/ResumeQualityAssessment.html | 4 +- .../resume/metadata/ResumeQualityFinding.html | 4 +- .../resume/metadata/ResumeQualityLevel.html | 4 +- .../models/resume/metadata/ResumeSection.html | 4 +- .../metadata/class-use/ReservedData.html | 4 +- .../metadata/class-use/ResumeMetadata.html | 4 +- .../class-use/ResumeQualityAssessment.html | 4 +- .../class-use/ResumeQualityFinding.html | 4 +- .../class-use/ResumeQualityLevel.html | 4 +- .../metadata/class-use/ResumeSection.html | 4 +- .../models/resume/metadata/package-frame.html | 4 +- .../resume/metadata/package-summary.html | 4 +- .../models/resume/metadata/package-tree.html | 4 +- .../models/resume/metadata/package-use.html | 4 +- .../resume/military/MilitaryDetails.html | 4 +- .../resume/military/MilitaryService.html | 4 +- .../resume/military/SecurityCredential.html | 4 +- .../military/class-use/MilitaryDetails.html | 4 +- .../military/class-use/MilitaryService.html | 4 +- .../class-use/SecurityCredential.html | 4 +- .../models/resume/military/package-frame.html | 4 +- .../resume/military/package-summary.html | 4 +- .../models/resume/military/package-tree.html | 4 +- .../models/resume/military/package-use.html | 4 +- .../sovren/models/resume/package-frame.html | 4 +- .../sovren/models/resume/package-summary.html | 4 +- .../sovren/models/resume/package-tree.html | 4 +- .../com/sovren/models/resume/package-use.html | 4 +- .../resume/skills/ResumeNormalizedSkill.html | 4 +- .../models/resume/skills/ResumeRawSkill.html | 4 +- .../models/resume/skills/ResumeSkill.html | 4 +- .../resume/skills/ResumeSkillVariation.html | 4 +- .../resume/skills/ResumeSubTaxonomy.html | 4 +- .../models/resume/skills/ResumeTaxonomy.html | 4 +- .../resume/skills/ResumeTaxonomyRoot.html | 4 +- .../models/resume/skills/ResumeV2Skills.html | 4 +- .../class-use/ResumeNormalizedSkill.html | 4 +- .../skills/class-use/ResumeRawSkill.html | 4 +- .../resume/skills/class-use/ResumeSkill.html | 4 +- .../class-use/ResumeSkillVariation.html | 4 +- .../skills/class-use/ResumeSubTaxonomy.html | 4 +- .../skills/class-use/ResumeTaxonomy.html | 4 +- .../skills/class-use/ResumeTaxonomyRoot.html | 4 +- .../skills/class-use/ResumeV2Skills.html | 4 +- .../models/resume/skills/package-frame.html | 4 +- .../models/resume/skills/package-summary.html | 4 +- .../models/resume/skills/package-tree.html | 4 +- .../models/resume/skills/package-use.html | 4 +- .../models/skills/FoundSubTaxonomy.html | 4 +- .../sovren/models/skills/FoundTaxonomy.html | 4 +- docs/com/sovren/models/skills/ITaxonomy.html | 4 +- .../sovren/models/skills/NormalizedSkill.html | 4 +- .../sovren/models/skills/ProfessionClass.html | 4 +- .../sovren/models/skills/ProfessionGroup.html | 4 +- docs/com/sovren/models/skills/RawSkill.html | 4 +- docs/com/sovren/models/skills/Skill.html | 4 +- .../com/sovren/models/skills/SubTaxonomy.html | 4 +- docs/com/sovren/models/skills/Taxonomy.html | 4 +- .../skills/class-use/FoundSubTaxonomy.html | 4 +- .../skills/class-use/FoundTaxonomy.html | 4 +- .../models/skills/class-use/ITaxonomy.html | 4 +- .../skills/class-use/NormalizedSkill.html | 4 +- .../skills/class-use/ProfessionClass.html | 4 +- .../skills/class-use/ProfessionGroup.html | 4 +- .../models/skills/class-use/RawSkill.html | 4 +- .../sovren/models/skills/class-use/Skill.html | 4 +- .../models/skills/class-use/SubTaxonomy.html | 4 +- .../models/skills/class-use/Taxonomy.html | 4 +- .../sovren/models/skills/package-frame.html | 4 +- .../sovren/models/skills/package-summary.html | 4 +- .../sovren/models/skills/package-tree.html | 4 +- .../com/sovren/models/skills/package-use.html | 4 +- docs/com/sovren/package-frame.html | 4 +- docs/com/sovren/package-summary.html | 4 +- docs/com/sovren/package-tree.html | 4 +- docs/com/sovren/package-use.html | 4 +- .../utilities/SovrenJsonSerializer.html | 4 +- .../class-use/SovrenJsonSerializer.html | 4 +- docs/com/sovren/utilities/package-frame.html | 4 +- .../com/sovren/utilities/package-summary.html | 4 +- docs/com/sovren/utilities/package-tree.html | 4 +- docs/com/sovren/utilities/package-use.html | 4 +- docs/constant-values.html | 4 +- docs/deprecated-list.html | 4 +- docs/help-doc.html | 4 +- docs/index-all.html | 123 +++++- docs/index.html | 2 +- docs/overview-frame.html | 4 +- docs/overview-summary.html | 4 +- docs/overview-tree.html | 8 +- docs/serialized-form.html | 4 +- 741 files changed, 3176 insertions(+), 1700 deletions(-) create mode 100644 docs/com/sovren/models/job/ApplicationDetails.html create mode 100644 docs/com/sovren/models/job/PayRange.html create mode 100644 docs/com/sovren/models/job/class-use/ApplicationDetails.html create mode 100644 docs/com/sovren/models/job/class-use/PayRange.html diff --git a/docs/allclasses-frame.html b/docs/allclasses-frame.html index a7ac23c41..b8fb14716 100644 --- a/docs/allclasses-frame.html +++ b/docs/allclasses-frame.html @@ -2,10 +2,10 @@ - + All Classes (Sovren Java SDK 1.7.1 API) - + @@ -18,6 +18,7 @@

All Classes

  • ApiResponse
  • ApiResponseInfo
  • ApiResponseInfoLite
  • +
  • ApplicationDetails
  • Association
  • AutocompleteRequest
  • AutoCompleteSkillsResponse
  • @@ -197,6 +198,7 @@

    All Classes

  • ParseResumeResponseValue
  • ParsingMetadata
  • ParsingNormalizedProfession
  • +
  • PayRange
  • PersonalAttributes
  • PersonName
  • Position
  • diff --git a/docs/allclasses-noframe.html b/docs/allclasses-noframe.html index 41da0c7d9..758d3ee54 100644 --- a/docs/allclasses-noframe.html +++ b/docs/allclasses-noframe.html @@ -2,10 +2,10 @@ - + All Classes (Sovren Java SDK 1.7.1 API) - + @@ -18,6 +18,7 @@

    All Classes

  • ApiResponse
  • ApiResponseInfo
  • ApiResponseInfoLite
  • +
  • ApplicationDetails
  • Association
  • AutocompleteRequest
  • AutoCompleteSkillsResponse
  • @@ -197,6 +198,7 @@

    All Classes

  • ParseResumeResponseValue
  • ParsingMetadata
  • ParsingNormalizedProfession
  • +
  • PayRange
  • PersonalAttributes
  • PersonName
  • Position
  • diff --git a/docs/com/sovren/DataCenter.html b/docs/com/sovren/DataCenter.html index 4e61e8a6f..8de92b866 100644 --- a/docs/com/sovren/DataCenter.html +++ b/docs/com/sovren/DataCenter.html @@ -2,10 +2,10 @@ - + DataCenter (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/SovrenClient.html b/docs/com/sovren/SovrenClient.html index a1076f76e..771bc8f4e 100644 --- a/docs/com/sovren/SovrenClient.html +++ b/docs/com/sovren/SovrenClient.html @@ -2,10 +2,10 @@ - + SovrenClient (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/SovrenUIClient.html b/docs/com/sovren/SovrenUIClient.html index f486e4831..85a8a0308 100644 --- a/docs/com/sovren/SovrenUIClient.html +++ b/docs/com/sovren/SovrenUIClient.html @@ -2,10 +2,10 @@ - + SovrenUIClient (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/class-use/DataCenter.html b/docs/com/sovren/class-use/DataCenter.html index f391aa448..aed0164e5 100644 --- a/docs/com/sovren/class-use/DataCenter.html +++ b/docs/com/sovren/class-use/DataCenter.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.DataCenter (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/class-use/SovrenClient.html b/docs/com/sovren/class-use/SovrenClient.html index 7bb8fc7c9..43efdd379 100644 --- a/docs/com/sovren/class-use/SovrenClient.html +++ b/docs/com/sovren/class-use/SovrenClient.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.SovrenClient (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/class-use/SovrenUIClient.html b/docs/com/sovren/class-use/SovrenUIClient.html index 1585b02e4..4df7aa9ba 100644 --- a/docs/com/sovren/class-use/SovrenUIClient.html +++ b/docs/com/sovren/class-use/SovrenUIClient.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.SovrenUIClient (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/exceptions/SovrenException.html b/docs/com/sovren/exceptions/SovrenException.html index 301759e18..7fcbf6138 100644 --- a/docs/com/sovren/exceptions/SovrenException.html +++ b/docs/com/sovren/exceptions/SovrenException.html @@ -2,10 +2,10 @@ - + SovrenException (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/exceptions/SovrenGeocodeJobException.html b/docs/com/sovren/exceptions/SovrenGeocodeJobException.html index e4f0ecae4..19711b1da 100644 --- a/docs/com/sovren/exceptions/SovrenGeocodeJobException.html +++ b/docs/com/sovren/exceptions/SovrenGeocodeJobException.html @@ -2,10 +2,10 @@ - + SovrenGeocodeJobException (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/exceptions/SovrenGeocodeResumeException.html b/docs/com/sovren/exceptions/SovrenGeocodeResumeException.html index ff2d86a72..18dc290da 100644 --- a/docs/com/sovren/exceptions/SovrenGeocodeResumeException.html +++ b/docs/com/sovren/exceptions/SovrenGeocodeResumeException.html @@ -2,10 +2,10 @@ - + SovrenGeocodeResumeException (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/exceptions/SovrenIndexJobException.html b/docs/com/sovren/exceptions/SovrenIndexJobException.html index ded027075..f7e0f26b4 100644 --- a/docs/com/sovren/exceptions/SovrenIndexJobException.html +++ b/docs/com/sovren/exceptions/SovrenIndexJobException.html @@ -2,10 +2,10 @@ - + SovrenIndexJobException (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/exceptions/SovrenIndexResumeException.html b/docs/com/sovren/exceptions/SovrenIndexResumeException.html index 4eaa625c9..b3154bb9a 100644 --- a/docs/com/sovren/exceptions/SovrenIndexResumeException.html +++ b/docs/com/sovren/exceptions/SovrenIndexResumeException.html @@ -2,10 +2,10 @@ - + SovrenIndexResumeException (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/exceptions/SovrenProfessionNormalizationJobException.html b/docs/com/sovren/exceptions/SovrenProfessionNormalizationJobException.html index bffa65bc9..7a3cf0cfc 100644 --- a/docs/com/sovren/exceptions/SovrenProfessionNormalizationJobException.html +++ b/docs/com/sovren/exceptions/SovrenProfessionNormalizationJobException.html @@ -2,10 +2,10 @@ - + SovrenProfessionNormalizationJobException (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/exceptions/SovrenProfessionNormalizationResumeException.html b/docs/com/sovren/exceptions/SovrenProfessionNormalizationResumeException.html index 0bbb99388..7c3325ad8 100644 --- a/docs/com/sovren/exceptions/SovrenProfessionNormalizationResumeException.html +++ b/docs/com/sovren/exceptions/SovrenProfessionNormalizationResumeException.html @@ -2,10 +2,10 @@ - + SovrenProfessionNormalizationResumeException (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/exceptions/SovrenUsableJobException.html b/docs/com/sovren/exceptions/SovrenUsableJobException.html index cfa8e1267..dd1598d12 100644 --- a/docs/com/sovren/exceptions/SovrenUsableJobException.html +++ b/docs/com/sovren/exceptions/SovrenUsableJobException.html @@ -2,10 +2,10 @@ - + SovrenUsableJobException (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/exceptions/SovrenUsableResumeException.html b/docs/com/sovren/exceptions/SovrenUsableResumeException.html index 1b8ef3c8a..4fecfb4ac 100644 --- a/docs/com/sovren/exceptions/SovrenUsableResumeException.html +++ b/docs/com/sovren/exceptions/SovrenUsableResumeException.html @@ -2,10 +2,10 @@ - + SovrenUsableResumeException (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/exceptions/class-use/SovrenException.html b/docs/com/sovren/exceptions/class-use/SovrenException.html index a35c8e9c0..de46e56d6 100644 --- a/docs/com/sovren/exceptions/class-use/SovrenException.html +++ b/docs/com/sovren/exceptions/class-use/SovrenException.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.exceptions.SovrenException (Sovren Java SDK 1.7.1 API) - + @@ -139,39 +139,39 @@

    Uses of -<TTarget extends IParsedDocWithId>
    GenerateUIResponse
    -SovrenUIClient.bimetricScore(ParsedJobWithId sourceJob, +<TTarget extends IParsedDocWithId>
    BimetricScoreResponse
    +SovrenClient.bimetricScore(ParsedJobWithId sourceJob, List<TTarget> targetDocuments, CategoryWeights preferredWeights, SearchMatchSettings settings) -
    Create a Matching UI session to score one or more target documents against a source job
    +
    Score one or more target documents against a source job
    -<TTarget extends IParsedDocWithId>
    BimetricScoreResponse
    -SovrenClient.bimetricScore(ParsedJobWithId sourceJob, +<TTarget extends IParsedDocWithId>
    GenerateUIResponse
    +SovrenUIClient.bimetricScore(ParsedJobWithId sourceJob, List<TTarget> targetDocuments, CategoryWeights preferredWeights, SearchMatchSettings settings) -
    Score one or more target documents against a source job
    +
    Create a Matching UI session to score one or more target documents against a source job
    -<TTarget extends IParsedDocWithId>
    GenerateUIResponse
    -SovrenUIClient.bimetricScore(ParsedResumeWithId sourceResume, +<TTarget extends IParsedDocWithId>
    BimetricScoreResponse
    +SovrenClient.bimetricScore(ParsedResumeWithId sourceResume, List<TTarget> targetDocuments, CategoryWeights preferredWeights, SearchMatchSettings settings) -
    Create a Matching UI session to score one or more target documents against a source resume
    +
    Score one or more target documents against a source resume
    -<TTarget extends IParsedDocWithId>
    BimetricScoreResponse
    -SovrenClient.bimetricScore(ParsedResumeWithId sourceResume, +<TTarget extends IParsedDocWithId>
    GenerateUIResponse
    +SovrenUIClient.bimetricScore(ParsedResumeWithId sourceResume, List<TTarget> targetDocuments, CategoryWeights preferredWeights, SearchMatchSettings settings) -
    Score one or more target documents against a source resume
    +
    Create a Matching UI session to score one or more target documents against a source resume
    @@ -451,71 +451,71 @@

    Uses of -GenerateUIResponse -SovrenUIClient.match(ParsedJob job, +MatchResponse +SovrenClient.match(ParsedJob job, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Create a Matching UI session to find matches for a non-indexed job.
    +
    Find matches for a non-indexed job.
    -MatchResponse -SovrenClient.match(ParsedJob job, +GenerateUIResponse +SovrenUIClient.match(ParsedJob job, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Find matches for a non-indexed job.
    +
    Create a Matching UI session to find matches for a non-indexed job.
    -GenerateUIResponse -SovrenUIClient.match(ParsedResume resume, +MatchResponse +SovrenClient.match(ParsedResume resume, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Create a Matching UI session to find matches for a non-indexed resume.
    +
    Find matches for a non-indexed resume.
    -MatchResponse -SovrenClient.match(ParsedResume resume, +GenerateUIResponse +SovrenUIClient.match(ParsedResume resume, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Find matches for a non-indexed resume.
    +
    Create a Matching UI session to find matches for a non-indexed resume.
    -GenerateUIResponse -SovrenUIClient.match(String indexId, +MatchResponse +SovrenClient.match(String indexId, String documentId, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Create a Matching UI session to find matches for a resume or job that is already indexed
    +
    Find matches for a resume or job that is already indexed
    -MatchResponse -SovrenClient.match(String indexId, +GenerateUIResponse +SovrenUIClient.match(String indexId, String documentId, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Find matches for a resume or job that is already indexed
    +
    Create a Matching UI session to find matches for a resume or job that is already indexed
    @@ -559,21 +559,21 @@

    Uses of -GenerateUIResponse -SovrenUIClient.search(List<String> indexesToQuery, +SearchResponse +SovrenClient.search(List<String> indexesToQuery, FilterCriteria query, SearchMatchSettings settings, PaginationSettings pagination) -
    Create a Matching UI session to search for resumes or jobs that meet specific criteria
    +
    Search for resumes or jobs that meet specific criteria
    -SearchResponse -SovrenClient.search(List<String> indexesToQuery, +GenerateUIResponse +SovrenUIClient.search(List<String> indexesToQuery, FilterCriteria query, SearchMatchSettings settings, PaginationSettings pagination) -
    Search for resumes or jobs that meet specific criteria
    +
    Create a Matching UI session to search for resumes or jobs that meet specific criteria
    diff --git a/docs/com/sovren/exceptions/class-use/SovrenGeocodeJobException.html b/docs/com/sovren/exceptions/class-use/SovrenGeocodeJobException.html index 7fb7bc10b..7615a43e4 100644 --- a/docs/com/sovren/exceptions/class-use/SovrenGeocodeJobException.html +++ b/docs/com/sovren/exceptions/class-use/SovrenGeocodeJobException.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.exceptions.SovrenGeocodeJobException (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/exceptions/class-use/SovrenGeocodeResumeException.html b/docs/com/sovren/exceptions/class-use/SovrenGeocodeResumeException.html index 7dadec81a..3289359e5 100644 --- a/docs/com/sovren/exceptions/class-use/SovrenGeocodeResumeException.html +++ b/docs/com/sovren/exceptions/class-use/SovrenGeocodeResumeException.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.exceptions.SovrenGeocodeResumeException (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/exceptions/class-use/SovrenIndexJobException.html b/docs/com/sovren/exceptions/class-use/SovrenIndexJobException.html index f90dfe073..dfa1893d6 100644 --- a/docs/com/sovren/exceptions/class-use/SovrenIndexJobException.html +++ b/docs/com/sovren/exceptions/class-use/SovrenIndexJobException.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.exceptions.SovrenIndexJobException (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/exceptions/class-use/SovrenIndexResumeException.html b/docs/com/sovren/exceptions/class-use/SovrenIndexResumeException.html index 69655f29b..48091cbae 100644 --- a/docs/com/sovren/exceptions/class-use/SovrenIndexResumeException.html +++ b/docs/com/sovren/exceptions/class-use/SovrenIndexResumeException.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.exceptions.SovrenIndexResumeException (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/exceptions/class-use/SovrenProfessionNormalizationJobException.html b/docs/com/sovren/exceptions/class-use/SovrenProfessionNormalizationJobException.html index 0021675a3..75ea37ff8 100644 --- a/docs/com/sovren/exceptions/class-use/SovrenProfessionNormalizationJobException.html +++ b/docs/com/sovren/exceptions/class-use/SovrenProfessionNormalizationJobException.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.exceptions.SovrenProfessionNormalizationJobException (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/exceptions/class-use/SovrenProfessionNormalizationResumeException.html b/docs/com/sovren/exceptions/class-use/SovrenProfessionNormalizationResumeException.html index a52d1cff5..7b71ebb42 100644 --- a/docs/com/sovren/exceptions/class-use/SovrenProfessionNormalizationResumeException.html +++ b/docs/com/sovren/exceptions/class-use/SovrenProfessionNormalizationResumeException.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.exceptions.SovrenProfessionNormalizationResumeException (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/exceptions/class-use/SovrenUsableJobException.html b/docs/com/sovren/exceptions/class-use/SovrenUsableJobException.html index ad85c9930..5b206b824 100644 --- a/docs/com/sovren/exceptions/class-use/SovrenUsableJobException.html +++ b/docs/com/sovren/exceptions/class-use/SovrenUsableJobException.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.exceptions.SovrenUsableJobException (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/exceptions/class-use/SovrenUsableResumeException.html b/docs/com/sovren/exceptions/class-use/SovrenUsableResumeException.html index 204d4555e..8f3bb89ab 100644 --- a/docs/com/sovren/exceptions/class-use/SovrenUsableResumeException.html +++ b/docs/com/sovren/exceptions/class-use/SovrenUsableResumeException.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.exceptions.SovrenUsableResumeException (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/exceptions/package-frame.html b/docs/com/sovren/exceptions/package-frame.html index 3fcddc6b6..403640861 100644 --- a/docs/com/sovren/exceptions/package-frame.html +++ b/docs/com/sovren/exceptions/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.exceptions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/exceptions/package-summary.html b/docs/com/sovren/exceptions/package-summary.html index d247449ec..1f739be65 100644 --- a/docs/com/sovren/exceptions/package-summary.html +++ b/docs/com/sovren/exceptions/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.exceptions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/exceptions/package-tree.html b/docs/com/sovren/exceptions/package-tree.html index 281d691db..8bb7b596b 100644 --- a/docs/com/sovren/exceptions/package-tree.html +++ b/docs/com/sovren/exceptions/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.exceptions Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/exceptions/package-use.html b/docs/com/sovren/exceptions/package-use.html index 84bba62f5..594ca2389 100644 --- a/docs/com/sovren/exceptions/package-use.html +++ b/docs/com/sovren/exceptions/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.exceptions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/http/HttpResponse.html b/docs/com/sovren/http/HttpResponse.html index 64d245657..9b28db175 100644 --- a/docs/com/sovren/http/HttpResponse.html +++ b/docs/com/sovren/http/HttpResponse.html @@ -2,10 +2,10 @@ - + HttpResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/http/class-use/HttpResponse.html b/docs/com/sovren/http/class-use/HttpResponse.html index 2e488297e..796c0819c 100644 --- a/docs/com/sovren/http/class-use/HttpResponse.html +++ b/docs/com/sovren/http/class-use/HttpResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.http.HttpResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/http/package-frame.html b/docs/com/sovren/http/package-frame.html index d6df5c90b..44d1eb933 100644 --- a/docs/com/sovren/http/package-frame.html +++ b/docs/com/sovren/http/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.http (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/http/package-summary.html b/docs/com/sovren/http/package-summary.html index be5d9bb05..85b6947e2 100644 --- a/docs/com/sovren/http/package-summary.html +++ b/docs/com/sovren/http/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.http (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/http/package-tree.html b/docs/com/sovren/http/package-tree.html index f5423b9b6..b12de9f51 100644 --- a/docs/com/sovren/http/package-tree.html +++ b/docs/com/sovren/http/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.http Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/http/package-use.html b/docs/com/sovren/http/package-use.html index 41e338611..e7a06de36 100644 --- a/docs/com/sovren/http/package-use.html +++ b/docs/com/sovren/http/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.http (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/Document.html b/docs/com/sovren/models/Document.html index 69b4e36b4..515e0a861 100644 --- a/docs/com/sovren/models/Document.html +++ b/docs/com/sovren/models/Document.html @@ -2,10 +2,10 @@ - + Document (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/GeoCoordinates.html b/docs/com/sovren/models/GeoCoordinates.html index c15eb1e02..beb835ff2 100644 --- a/docs/com/sovren/models/GeoCoordinates.html +++ b/docs/com/sovren/models/GeoCoordinates.html @@ -2,10 +2,10 @@ - + GeoCoordinates (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/GeocodedCoordinates.html b/docs/com/sovren/models/GeocodedCoordinates.html index 5afd3720c..b39a914b2 100644 --- a/docs/com/sovren/models/GeocodedCoordinates.html +++ b/docs/com/sovren/models/GeocodedCoordinates.html @@ -2,10 +2,10 @@ - + GeocodedCoordinates (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/Location.html b/docs/com/sovren/models/Location.html index 3c820713f..42957ae8b 100644 --- a/docs/com/sovren/models/Location.html +++ b/docs/com/sovren/models/Location.html @@ -2,10 +2,10 @@ - + Location (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/ParsedDocument.html b/docs/com/sovren/models/ParsedDocument.html index 085fc13e8..7e51efa8b 100644 --- a/docs/com/sovren/models/ParsedDocument.html +++ b/docs/com/sovren/models/ParsedDocument.html @@ -2,10 +2,10 @@ - + ParsedDocument (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/ParsedDocumentMetadata.html b/docs/com/sovren/models/ParsedDocumentMetadata.html index 519d3ed2f..826ed324a 100644 --- a/docs/com/sovren/models/ParsedDocumentMetadata.html +++ b/docs/com/sovren/models/ParsedDocumentMetadata.html @@ -2,10 +2,10 @@ - + ParsedDocumentMetadata (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/SovrenDate.html b/docs/com/sovren/models/SovrenDate.html index 1bfa8e6f5..241940fdf 100644 --- a/docs/com/sovren/models/SovrenDate.html +++ b/docs/com/sovren/models/SovrenDate.html @@ -2,10 +2,10 @@ - + SovrenDate (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/SovrenPrimitive.html b/docs/com/sovren/models/SovrenPrimitive.html index 5ad11933a..542092542 100644 --- a/docs/com/sovren/models/SovrenPrimitive.html +++ b/docs/com/sovren/models/SovrenPrimitive.html @@ -2,10 +2,10 @@ - + SovrenPrimitive (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/AccountInfo.html b/docs/com/sovren/models/api/AccountInfo.html index cc5123f2f..27762cf60 100644 --- a/docs/com/sovren/models/api/AccountInfo.html +++ b/docs/com/sovren/models/api/AccountInfo.html @@ -2,10 +2,10 @@ - + AccountInfo (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/ApiResponse.html b/docs/com/sovren/models/api/ApiResponse.html index bd5964a5d..4a4b03f19 100644 --- a/docs/com/sovren/models/api/ApiResponse.html +++ b/docs/com/sovren/models/api/ApiResponse.html @@ -2,10 +2,10 @@ - + ApiResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/ApiResponseInfo.html b/docs/com/sovren/models/api/ApiResponseInfo.html index 02ea15608..29516a457 100644 --- a/docs/com/sovren/models/api/ApiResponseInfo.html +++ b/docs/com/sovren/models/api/ApiResponseInfo.html @@ -2,10 +2,10 @@ - + ApiResponseInfo (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/ApiResponseInfoLite.html b/docs/com/sovren/models/api/ApiResponseInfoLite.html index 7dc906803..f781d5c15 100644 --- a/docs/com/sovren/models/api/ApiResponseInfoLite.html +++ b/docs/com/sovren/models/api/ApiResponseInfoLite.html @@ -2,10 +2,10 @@ - + ApiResponseInfoLite (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/ISovrenResponse.html b/docs/com/sovren/models/api/ISovrenResponse.html index 191db6388..6c4e3c5d5 100644 --- a/docs/com/sovren/models/api/ISovrenResponse.html +++ b/docs/com/sovren/models/api/ISovrenResponse.html @@ -2,10 +2,10 @@ - + ISovrenResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/account/GetAccountInfoResponse.html b/docs/com/sovren/models/api/account/GetAccountInfoResponse.html index 161ca074e..bac8bea97 100644 --- a/docs/com/sovren/models/api/account/GetAccountInfoResponse.html +++ b/docs/com/sovren/models/api/account/GetAccountInfoResponse.html @@ -2,10 +2,10 @@ - + GetAccountInfoResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/account/class-use/GetAccountInfoResponse.html b/docs/com/sovren/models/api/account/class-use/GetAccountInfoResponse.html index c3c7659ad..35bb12610 100644 --- a/docs/com/sovren/models/api/account/class-use/GetAccountInfoResponse.html +++ b/docs/com/sovren/models/api/account/class-use/GetAccountInfoResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.account.GetAccountInfoResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/account/package-frame.html b/docs/com/sovren/models/api/account/package-frame.html index a33296f87..b3525c4a4 100644 --- a/docs/com/sovren/models/api/account/package-frame.html +++ b/docs/com/sovren/models/api/account/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.account (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/account/package-summary.html b/docs/com/sovren/models/api/account/package-summary.html index a22532102..7e1ebc664 100644 --- a/docs/com/sovren/models/api/account/package-summary.html +++ b/docs/com/sovren/models/api/account/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.account (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/account/package-tree.html b/docs/com/sovren/models/api/account/package-tree.html index 6678d7765..b6f594886 100644 --- a/docs/com/sovren/models/api/account/package-tree.html +++ b/docs/com/sovren/models/api/account/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.account Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/account/package-use.html b/docs/com/sovren/models/api/account/package-use.html index 1020ee789..31b3de333 100644 --- a/docs/com/sovren/models/api/account/package-use.html +++ b/docs/com/sovren/models/api/account/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.models.api.account (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/bimetricscoring/BimetricScoreJobRequest.html b/docs/com/sovren/models/api/bimetricscoring/BimetricScoreJobRequest.html index da9f3b7e1..a570588c2 100644 --- a/docs/com/sovren/models/api/bimetricscoring/BimetricScoreJobRequest.html +++ b/docs/com/sovren/models/api/bimetricscoring/BimetricScoreJobRequest.html @@ -2,10 +2,10 @@ - + BimetricScoreJobRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/bimetricscoring/BimetricScoreRequest.html b/docs/com/sovren/models/api/bimetricscoring/BimetricScoreRequest.html index 4d00b34cb..85de18bdd 100644 --- a/docs/com/sovren/models/api/bimetricscoring/BimetricScoreRequest.html +++ b/docs/com/sovren/models/api/bimetricscoring/BimetricScoreRequest.html @@ -2,10 +2,10 @@ - + BimetricScoreRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/bimetricscoring/BimetricScoreResponse.html b/docs/com/sovren/models/api/bimetricscoring/BimetricScoreResponse.html index 8041f0708..aaa78dd3f 100644 --- a/docs/com/sovren/models/api/bimetricscoring/BimetricScoreResponse.html +++ b/docs/com/sovren/models/api/bimetricscoring/BimetricScoreResponse.html @@ -2,10 +2,10 @@ - + BimetricScoreResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/bimetricscoring/BimetricScoreResponseValue.html b/docs/com/sovren/models/api/bimetricscoring/BimetricScoreResponseValue.html index 4b7ccc03e..4d1ed3f78 100644 --- a/docs/com/sovren/models/api/bimetricscoring/BimetricScoreResponseValue.html +++ b/docs/com/sovren/models/api/bimetricscoring/BimetricScoreResponseValue.html @@ -2,10 +2,10 @@ - + BimetricScoreResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/bimetricscoring/BimetricScoreResult.html b/docs/com/sovren/models/api/bimetricscoring/BimetricScoreResult.html index 048bb1f2d..59ad06b68 100644 --- a/docs/com/sovren/models/api/bimetricscoring/BimetricScoreResult.html +++ b/docs/com/sovren/models/api/bimetricscoring/BimetricScoreResult.html @@ -2,10 +2,10 @@ - + BimetricScoreResult (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/bimetricscoring/BimetricScoreResumeRequest.html b/docs/com/sovren/models/api/bimetricscoring/BimetricScoreResumeRequest.html index d93989c4c..c73c7b8bf 100644 --- a/docs/com/sovren/models/api/bimetricscoring/BimetricScoreResumeRequest.html +++ b/docs/com/sovren/models/api/bimetricscoring/BimetricScoreResumeRequest.html @@ -2,10 +2,10 @@ - + BimetricScoreResumeRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/bimetricscoring/IParsedDocWithId.html b/docs/com/sovren/models/api/bimetricscoring/IParsedDocWithId.html index d96bef104..4ecdecc43 100644 --- a/docs/com/sovren/models/api/bimetricscoring/IParsedDocWithId.html +++ b/docs/com/sovren/models/api/bimetricscoring/IParsedDocWithId.html @@ -2,10 +2,10 @@ - + IParsedDocWithId (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/bimetricscoring/ParsedJobWithId.html b/docs/com/sovren/models/api/bimetricscoring/ParsedJobWithId.html index 714fb2f00..b2041053e 100644 --- a/docs/com/sovren/models/api/bimetricscoring/ParsedJobWithId.html +++ b/docs/com/sovren/models/api/bimetricscoring/ParsedJobWithId.html @@ -2,10 +2,10 @@ - + ParsedJobWithId (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/bimetricscoring/ParsedResumeWithId.html b/docs/com/sovren/models/api/bimetricscoring/ParsedResumeWithId.html index 1a0b11adf..f00deb3e9 100644 --- a/docs/com/sovren/models/api/bimetricscoring/ParsedResumeWithId.html +++ b/docs/com/sovren/models/api/bimetricscoring/ParsedResumeWithId.html @@ -2,10 +2,10 @@ - + ParsedResumeWithId (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreJobRequest.html b/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreJobRequest.html index 9c69b5ef0..cacf3b6b5 100644 --- a/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreJobRequest.html +++ b/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreJobRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.bimetricscoring.BimetricScoreJobRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreRequest.html b/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreRequest.html index 4d3f71826..db6770d80 100644 --- a/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreRequest.html +++ b/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.bimetricscoring.BimetricScoreRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreResponse.html b/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreResponse.html index 626819f5e..a760ab31e 100644 --- a/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreResponse.html +++ b/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.bimetricscoring.BimetricScoreResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreResponseValue.html b/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreResponseValue.html index 12b9beefc..b4f74ebd7 100644 --- a/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreResponseValue.html +++ b/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.bimetricscoring.BimetricScoreResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreResult.html b/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreResult.html index 078229e46..af563d59e 100644 --- a/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreResult.html +++ b/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreResult.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.bimetricscoring.BimetricScoreResult (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreResumeRequest.html b/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreResumeRequest.html index 87e8c8cd1..c9b88a625 100644 --- a/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreResumeRequest.html +++ b/docs/com/sovren/models/api/bimetricscoring/class-use/BimetricScoreResumeRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.bimetricscoring.BimetricScoreResumeRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/bimetricscoring/class-use/IParsedDocWithId.html b/docs/com/sovren/models/api/bimetricscoring/class-use/IParsedDocWithId.html index 75290d752..3c1fe9f96 100644 --- a/docs/com/sovren/models/api/bimetricscoring/class-use/IParsedDocWithId.html +++ b/docs/com/sovren/models/api/bimetricscoring/class-use/IParsedDocWithId.html @@ -2,10 +2,10 @@ - + Uses of Interface com.sovren.models.api.bimetricscoring.IParsedDocWithId (Sovren Java SDK 1.7.1 API) - + @@ -108,39 +108,39 @@

    Uses of -<TTarget extends IParsedDocWithId>
    GenerateUIResponse
    -SovrenUIClient.bimetricScore(ParsedJobWithId sourceJob, +<TTarget extends IParsedDocWithId>
    BimetricScoreResponse
    +SovrenClient.bimetricScore(ParsedJobWithId sourceJob, List<TTarget> targetDocuments, CategoryWeights preferredWeights, SearchMatchSettings settings) -
    Create a Matching UI session to score one or more target documents against a source job
    +
    Score one or more target documents against a source job
    -<TTarget extends IParsedDocWithId>
    BimetricScoreResponse
    -SovrenClient.bimetricScore(ParsedJobWithId sourceJob, +<TTarget extends IParsedDocWithId>
    GenerateUIResponse
    +SovrenUIClient.bimetricScore(ParsedJobWithId sourceJob, List<TTarget> targetDocuments, CategoryWeights preferredWeights, SearchMatchSettings settings) -
    Score one or more target documents against a source job
    +
    Create a Matching UI session to score one or more target documents against a source job
    -<TTarget extends IParsedDocWithId>
    GenerateUIResponse
    -SovrenUIClient.bimetricScore(ParsedResumeWithId sourceResume, +<TTarget extends IParsedDocWithId>
    BimetricScoreResponse
    +SovrenClient.bimetricScore(ParsedResumeWithId sourceResume, List<TTarget> targetDocuments, CategoryWeights preferredWeights, SearchMatchSettings settings) -
    Create a Matching UI session to score one or more target documents against a source resume
    +
    Score one or more target documents against a source resume
    -<TTarget extends IParsedDocWithId>
    BimetricScoreResponse
    -SovrenClient.bimetricScore(ParsedResumeWithId sourceResume, +<TTarget extends IParsedDocWithId>
    GenerateUIResponse
    +SovrenUIClient.bimetricScore(ParsedResumeWithId sourceResume, List<TTarget> targetDocuments, CategoryWeights preferredWeights, SearchMatchSettings settings) -
    Score one or more target documents against a source resume
    +
    Create a Matching UI session to score one or more target documents against a source resume
    diff --git a/docs/com/sovren/models/api/bimetricscoring/class-use/ParsedJobWithId.html b/docs/com/sovren/models/api/bimetricscoring/class-use/ParsedJobWithId.html index ed74f43c3..e1917bfc8 100644 --- a/docs/com/sovren/models/api/bimetricscoring/class-use/ParsedJobWithId.html +++ b/docs/com/sovren/models/api/bimetricscoring/class-use/ParsedJobWithId.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.bimetricscoring.ParsedJobWithId (Sovren Java SDK 1.7.1 API) - + @@ -108,21 +108,21 @@

    Uses of -<TTarget extends IParsedDocWithId>
    GenerateUIResponse
    -SovrenUIClient.bimetricScore(ParsedJobWithId sourceJob, +<TTarget extends IParsedDocWithId>
    BimetricScoreResponse
    +SovrenClient.bimetricScore(ParsedJobWithId sourceJob, List<TTarget> targetDocuments, CategoryWeights preferredWeights, SearchMatchSettings settings) -
    Create a Matching UI session to score one or more target documents against a source job
    +
    Score one or more target documents against a source job
    -<TTarget extends IParsedDocWithId>
    BimetricScoreResponse
    -SovrenClient.bimetricScore(ParsedJobWithId sourceJob, +<TTarget extends IParsedDocWithId>
    GenerateUIResponse
    +SovrenUIClient.bimetricScore(ParsedJobWithId sourceJob, List<TTarget> targetDocuments, CategoryWeights preferredWeights, SearchMatchSettings settings) -
    Score one or more target documents against a source job
    +
    Create a Matching UI session to score one or more target documents against a source job
    diff --git a/docs/com/sovren/models/api/bimetricscoring/class-use/ParsedResumeWithId.html b/docs/com/sovren/models/api/bimetricscoring/class-use/ParsedResumeWithId.html index 6fee08190..dc5a5e15b 100644 --- a/docs/com/sovren/models/api/bimetricscoring/class-use/ParsedResumeWithId.html +++ b/docs/com/sovren/models/api/bimetricscoring/class-use/ParsedResumeWithId.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.bimetricscoring.ParsedResumeWithId (Sovren Java SDK 1.7.1 API) - + @@ -108,21 +108,21 @@

    Uses of -<TTarget extends IParsedDocWithId>
    GenerateUIResponse
    -SovrenUIClient.bimetricScore(ParsedResumeWithId sourceResume, +<TTarget extends IParsedDocWithId>
    BimetricScoreResponse
    +SovrenClient.bimetricScore(ParsedResumeWithId sourceResume, List<TTarget> targetDocuments, CategoryWeights preferredWeights, SearchMatchSettings settings) -
    Create a Matching UI session to score one or more target documents against a source resume
    +
    Score one or more target documents against a source resume
    -<TTarget extends IParsedDocWithId>
    BimetricScoreResponse
    -SovrenClient.bimetricScore(ParsedResumeWithId sourceResume, +<TTarget extends IParsedDocWithId>
    GenerateUIResponse
    +SovrenUIClient.bimetricScore(ParsedResumeWithId sourceResume, List<TTarget> targetDocuments, CategoryWeights preferredWeights, SearchMatchSettings settings) -
    Score one or more target documents against a source resume
    +
    Create a Matching UI session to score one or more target documents against a source resume
    diff --git a/docs/com/sovren/models/api/bimetricscoring/package-frame.html b/docs/com/sovren/models/api/bimetricscoring/package-frame.html index 5c05612e8..abc8c8a70 100644 --- a/docs/com/sovren/models/api/bimetricscoring/package-frame.html +++ b/docs/com/sovren/models/api/bimetricscoring/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.bimetricscoring (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/bimetricscoring/package-summary.html b/docs/com/sovren/models/api/bimetricscoring/package-summary.html index adf6f98bc..41eaeddb4 100644 --- a/docs/com/sovren/models/api/bimetricscoring/package-summary.html +++ b/docs/com/sovren/models/api/bimetricscoring/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.bimetricscoring (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/bimetricscoring/package-tree.html b/docs/com/sovren/models/api/bimetricscoring/package-tree.html index 9ff045d31..9d88096fb 100644 --- a/docs/com/sovren/models/api/bimetricscoring/package-tree.html +++ b/docs/com/sovren/models/api/bimetricscoring/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.bimetricscoring Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/bimetricscoring/package-use.html b/docs/com/sovren/models/api/bimetricscoring/package-use.html index baa0b4260..907783738 100644 --- a/docs/com/sovren/models/api/bimetricscoring/package-use.html +++ b/docs/com/sovren/models/api/bimetricscoring/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.models.api.bimetricscoring (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/class-use/AccountInfo.html b/docs/com/sovren/models/api/class-use/AccountInfo.html index 5145a609d..5d3bb87dd 100644 --- a/docs/com/sovren/models/api/class-use/AccountInfo.html +++ b/docs/com/sovren/models/api/class-use/AccountInfo.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.AccountInfo (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/class-use/ApiResponse.html b/docs/com/sovren/models/api/class-use/ApiResponse.html index 903a99baf..c05456f01 100644 --- a/docs/com/sovren/models/api/class-use/ApiResponse.html +++ b/docs/com/sovren/models/api/class-use/ApiResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.ApiResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/class-use/ApiResponseInfo.html b/docs/com/sovren/models/api/class-use/ApiResponseInfo.html index 56bf11b45..fa12e016a 100644 --- a/docs/com/sovren/models/api/class-use/ApiResponseInfo.html +++ b/docs/com/sovren/models/api/class-use/ApiResponseInfo.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.ApiResponseInfo (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/class-use/ApiResponseInfoLite.html b/docs/com/sovren/models/api/class-use/ApiResponseInfoLite.html index fb5f4ddb0..39dc58358 100644 --- a/docs/com/sovren/models/api/class-use/ApiResponseInfoLite.html +++ b/docs/com/sovren/models/api/class-use/ApiResponseInfoLite.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.ApiResponseInfoLite (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/class-use/ISovrenResponse.html b/docs/com/sovren/models/api/class-use/ISovrenResponse.html index 92d90e6b2..edc849e97 100644 --- a/docs/com/sovren/models/api/class-use/ISovrenResponse.html +++ b/docs/com/sovren/models/api/class-use/ISovrenResponse.html @@ -2,10 +2,10 @@ - + Uses of Interface com.sovren.models.api.ISovrenResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/AutocompleteRequest.html b/docs/com/sovren/models/api/dataenrichment/AutocompleteRequest.html index f2abeaa82..7f15dda0c 100644 --- a/docs/com/sovren/models/api/dataenrichment/AutocompleteRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/AutocompleteRequest.html @@ -2,10 +2,10 @@ - + AutocompleteRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/GetMetadataResponse.html b/docs/com/sovren/models/api/dataenrichment/GetMetadataResponse.html index 16b497ce9..0d51a8ff5 100644 --- a/docs/com/sovren/models/api/dataenrichment/GetMetadataResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/GetMetadataResponse.html @@ -2,10 +2,10 @@ - + GetMetadataResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/TaxonomyFormat.html b/docs/com/sovren/models/api/dataenrichment/TaxonomyFormat.html index e0d34d78a..9438c97c4 100644 --- a/docs/com/sovren/models/api/dataenrichment/TaxonomyFormat.html +++ b/docs/com/sovren/models/api/dataenrichment/TaxonomyFormat.html @@ -2,10 +2,10 @@ - + TaxonomyFormat (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/class-use/AutocompleteRequest.html b/docs/com/sovren/models/api/dataenrichment/class-use/AutocompleteRequest.html index a83a294c3..74cdab51e 100644 --- a/docs/com/sovren/models/api/dataenrichment/class-use/AutocompleteRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/class-use/AutocompleteRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.AutocompleteRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/class-use/GetMetadataResponse.html b/docs/com/sovren/models/api/dataenrichment/class-use/GetMetadataResponse.html index b15639e92..4ba3a54d6 100644 --- a/docs/com/sovren/models/api/dataenrichment/class-use/GetMetadataResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/class-use/GetMetadataResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.GetMetadataResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/class-use/TaxonomyFormat.html b/docs/com/sovren/models/api/dataenrichment/class-use/TaxonomyFormat.html index 0ee3c262c..cc527f40b 100644 --- a/docs/com/sovren/models/api/dataenrichment/class-use/TaxonomyFormat.html +++ b/docs/com/sovren/models/api/dataenrichment/class-use/TaxonomyFormat.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.TaxonomyFormat (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/request/CompareProfessionsRequest.html b/docs/com/sovren/models/api/dataenrichment/ontology/request/CompareProfessionsRequest.html index de939b398..f361240f0 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/request/CompareProfessionsRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/request/CompareProfessionsRequest.html @@ -2,10 +2,10 @@ - + CompareProfessionsRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/request/CompareSkillsToProfessionRequest.html b/docs/com/sovren/models/api/dataenrichment/ontology/request/CompareSkillsToProfessionRequest.html index f400adb32..5c07d6ab9 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/request/CompareSkillsToProfessionRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/request/CompareSkillsToProfessionRequest.html @@ -2,10 +2,10 @@ - + CompareSkillsToProfessionRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/request/SuggestProfessionsRequest.html b/docs/com/sovren/models/api/dataenrichment/ontology/request/SuggestProfessionsRequest.html index d3dd0c84d..4c18017d5 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/request/SuggestProfessionsRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/request/SuggestProfessionsRequest.html @@ -2,10 +2,10 @@ - + SuggestProfessionsRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/request/SuggestSkillsRequest.html b/docs/com/sovren/models/api/dataenrichment/ontology/request/SuggestSkillsRequest.html index 21ae115fe..a6db9a313 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/request/SuggestSkillsRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/request/SuggestSkillsRequest.html @@ -2,10 +2,10 @@ - + SuggestSkillsRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/request/class-use/CompareProfessionsRequest.html b/docs/com/sovren/models/api/dataenrichment/ontology/request/class-use/CompareProfessionsRequest.html index b1859f66a..29932ad30 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/request/class-use/CompareProfessionsRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/request/class-use/CompareProfessionsRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.ontology.request.CompareProfessionsRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/request/class-use/CompareSkillsToProfessionRequest.html b/docs/com/sovren/models/api/dataenrichment/ontology/request/class-use/CompareSkillsToProfessionRequest.html index 8bec85682..e636cbbda 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/request/class-use/CompareSkillsToProfessionRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/request/class-use/CompareSkillsToProfessionRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.ontology.request.CompareSkillsToProfessionRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/request/class-use/SuggestProfessionsRequest.html b/docs/com/sovren/models/api/dataenrichment/ontology/request/class-use/SuggestProfessionsRequest.html index 6a9c9af71..2aa657375 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/request/class-use/SuggestProfessionsRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/request/class-use/SuggestProfessionsRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.ontology.request.SuggestProfessionsRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/request/class-use/SuggestSkillsRequest.html b/docs/com/sovren/models/api/dataenrichment/ontology/request/class-use/SuggestSkillsRequest.html index 8ecfe9a92..2a1fa95d4 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/request/class-use/SuggestSkillsRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/request/class-use/SuggestSkillsRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.ontology.request.SuggestSkillsRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/request/package-frame.html b/docs/com/sovren/models/api/dataenrichment/ontology/request/package-frame.html index 62db49434..beeeacdbe 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/request/package-frame.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/request/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment.ontology.request (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/request/package-summary.html b/docs/com/sovren/models/api/dataenrichment/ontology/request/package-summary.html index 20f18a884..cc804d8eb 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/request/package-summary.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/request/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment.ontology.request (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/request/package-tree.html b/docs/com/sovren/models/api/dataenrichment/ontology/request/package-tree.html index 9c61af4e4..7c26a91f1 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/request/package-tree.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/request/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment.ontology.request Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/request/package-use.html b/docs/com/sovren/models/api/dataenrichment/ontology/request/package-use.html index 32b6daa47..0a203d28b 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/request/package-use.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/request/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.models.api.dataenrichment.ontology.request (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/CompareProfessionsResponse.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/CompareProfessionsResponse.html index d12148c4d..34386fcaf 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/CompareProfessionsResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/CompareProfessionsResponse.html @@ -2,10 +2,10 @@ - + CompareProfessionsResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/CompareProfessionsResponseValue.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/CompareProfessionsResponseValue.html index cc589b512..7a911de92 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/CompareProfessionsResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/CompareProfessionsResponseValue.html @@ -2,10 +2,10 @@ - + CompareProfessionsResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/CompareSkillsToProfessionResponse.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/CompareSkillsToProfessionResponse.html index 4c5ed6bcb..7cdbb5b79 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/CompareSkillsToProfessionResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/CompareSkillsToProfessionResponse.html @@ -2,10 +2,10 @@ - + CompareSkillsToProfessionResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/CompareSkillsToProfessionResponseValue.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/CompareSkillsToProfessionResponseValue.html index e5d31ac31..2aeed25b6 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/CompareSkillsToProfessionResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/CompareSkillsToProfessionResponseValue.html @@ -2,10 +2,10 @@ - + CompareSkillsToProfessionResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/ProfessionExclusiveSkills.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/ProfessionExclusiveSkills.html index be5273cfd..a887cb07d 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/ProfessionExclusiveSkills.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/ProfessionExclusiveSkills.html @@ -2,10 +2,10 @@ - + ProfessionExclusiveSkills (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/SkillScore.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/SkillScore.html index bdd088f4f..ff77108a1 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/SkillScore.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/SkillScore.html @@ -2,10 +2,10 @@ - + SkillScore (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/SuggestProfessionsResponse.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/SuggestProfessionsResponse.html index 8a4b345d3..bb1628ac5 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/SuggestProfessionsResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/SuggestProfessionsResponse.html @@ -2,10 +2,10 @@ - + SuggestProfessionsResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/SuggestProfessionsResponseValue.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/SuggestProfessionsResponseValue.html index d22b540d1..4fd2f389e 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/SuggestProfessionsResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/SuggestProfessionsResponseValue.html @@ -2,10 +2,10 @@ - + SuggestProfessionsResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/SuggestSkillsResponse.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/SuggestSkillsResponse.html index bd9a305fc..9d09548a5 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/SuggestSkillsResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/SuggestSkillsResponse.html @@ -2,10 +2,10 @@ - + SuggestSkillsResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/SuggestSkillsResponseValue.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/SuggestSkillsResponseValue.html index 536ecc608..96936caa1 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/SuggestSkillsResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/SuggestSkillsResponseValue.html @@ -2,10 +2,10 @@ - + SuggestSkillsResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/SuggestedProfession.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/SuggestedProfession.html index 86cf5a89e..6632f3f6b 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/SuggestedProfession.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/SuggestedProfession.html @@ -2,10 +2,10 @@ - + SuggestedProfession (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/CompareProfessionsResponse.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/CompareProfessionsResponse.html index 3917bfd3c..a81784e12 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/CompareProfessionsResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/CompareProfessionsResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.ontology.response.CompareProfessionsResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/CompareProfessionsResponseValue.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/CompareProfessionsResponseValue.html index f73b6d42b..c2be619d9 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/CompareProfessionsResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/CompareProfessionsResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.ontology.response.CompareProfessionsResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/CompareSkillsToProfessionResponse.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/CompareSkillsToProfessionResponse.html index 0eab52808..60ddf57a4 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/CompareSkillsToProfessionResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/CompareSkillsToProfessionResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.ontology.response.CompareSkillsToProfessionResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/CompareSkillsToProfessionResponseValue.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/CompareSkillsToProfessionResponseValue.html index a651f1f33..812af95c6 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/CompareSkillsToProfessionResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/CompareSkillsToProfessionResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.ontology.response.CompareSkillsToProfessionResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/ProfessionExclusiveSkills.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/ProfessionExclusiveSkills.html index b01b7811e..0333da967 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/ProfessionExclusiveSkills.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/ProfessionExclusiveSkills.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.ontology.response.ProfessionExclusiveSkills (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SkillScore.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SkillScore.html index 1df523d22..ad180b84f 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SkillScore.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SkillScore.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.ontology.response.SkillScore (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SuggestProfessionsResponse.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SuggestProfessionsResponse.html index 78ece2cf2..558ef3a1f 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SuggestProfessionsResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SuggestProfessionsResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.ontology.response.SuggestProfessionsResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SuggestProfessionsResponseValue.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SuggestProfessionsResponseValue.html index 8bb675eed..f798e82cb 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SuggestProfessionsResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SuggestProfessionsResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.ontology.response.SuggestProfessionsResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SuggestSkillsResponse.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SuggestSkillsResponse.html index 05fadacc7..dff5eea6b 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SuggestSkillsResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SuggestSkillsResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.ontology.response.SuggestSkillsResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SuggestSkillsResponseValue.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SuggestSkillsResponseValue.html index b64b76408..3af0eb94d 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SuggestSkillsResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SuggestSkillsResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.ontology.response.SuggestSkillsResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SuggestedProfession.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SuggestedProfession.html index 9200598d3..9c927d4da 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SuggestedProfession.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/class-use/SuggestedProfession.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.ontology.response.SuggestedProfession (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/package-frame.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/package-frame.html index 24ca95b62..11642b824 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/package-frame.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment.ontology.response (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/package-summary.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/package-summary.html index 59d4fe952..07d5de8a0 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/package-summary.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment.ontology.response (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/package-tree.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/package-tree.html index 495f16618..f2b6df950 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/package-tree.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment.ontology.response Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/ontology/response/package-use.html b/docs/com/sovren/models/api/dataenrichment/ontology/response/package-use.html index 6ce4fa1f3..91fb9a71e 100644 --- a/docs/com/sovren/models/api/dataenrichment/ontology/response/package-use.html +++ b/docs/com/sovren/models/api/dataenrichment/ontology/response/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.models.api.dataenrichment.ontology.response (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/package-frame.html b/docs/com/sovren/models/api/dataenrichment/package-frame.html index 9caec5a2e..87398a371 100644 --- a/docs/com/sovren/models/api/dataenrichment/package-frame.html +++ b/docs/com/sovren/models/api/dataenrichment/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/package-summary.html b/docs/com/sovren/models/api/dataenrichment/package-summary.html index 27c050143..fc7506161 100644 --- a/docs/com/sovren/models/api/dataenrichment/package-summary.html +++ b/docs/com/sovren/models/api/dataenrichment/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/package-tree.html b/docs/com/sovren/models/api/dataenrichment/package-tree.html index 8a4df67d3..cd51b944e 100644 --- a/docs/com/sovren/models/api/dataenrichment/package-tree.html +++ b/docs/com/sovren/models/api/dataenrichment/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/package-use.html b/docs/com/sovren/models/api/dataenrichment/package-use.html index 487a5127c..e423ad63f 100644 --- a/docs/com/sovren/models/api/dataenrichment/package-use.html +++ b/docs/com/sovren/models/api/dataenrichment/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.models.api.dataenrichment (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/ONETVersion.html b/docs/com/sovren/models/api/dataenrichment/professions/ONETVersion.html index ffbff36cc..c3bafd895 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/ONETVersion.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/ONETVersion.html @@ -2,10 +2,10 @@ - + ONETVersion (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/ProfessionNormalizationVersions.html b/docs/com/sovren/models/api/dataenrichment/professions/ProfessionNormalizationVersions.html index 11e310403..f7913dc31 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/ProfessionNormalizationVersions.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/ProfessionNormalizationVersions.html @@ -2,10 +2,10 @@ - + ProfessionNormalizationVersions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/class-use/ONETVersion.html b/docs/com/sovren/models/api/dataenrichment/professions/class-use/ONETVersion.html index 0253ba09f..712ef8014 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/class-use/ONETVersion.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/class-use/ONETVersion.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.professions.ONETVersion (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/class-use/ProfessionNormalizationVersions.html b/docs/com/sovren/models/api/dataenrichment/professions/class-use/ProfessionNormalizationVersions.html index dd0545421..0acf5daca 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/class-use/ProfessionNormalizationVersions.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/class-use/ProfessionNormalizationVersions.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.professions.ProfessionNormalizationVersions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/package-frame.html b/docs/com/sovren/models/api/dataenrichment/professions/package-frame.html index 2a6160d45..ae817a73d 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/package-frame.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment.professions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/package-summary.html b/docs/com/sovren/models/api/dataenrichment/professions/package-summary.html index ae1cb04a2..8289481e8 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/package-summary.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment.professions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/package-tree.html b/docs/com/sovren/models/api/dataenrichment/professions/package-tree.html index 24e15d409..9bdf21309 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/package-tree.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment.professions Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/package-use.html b/docs/com/sovren/models/api/dataenrichment/professions/package-use.html index 740920236..34f5c7ee0 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/package-use.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.models.api.dataenrichment.professions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/request/LookupProfessionCodesRequest.html b/docs/com/sovren/models/api/dataenrichment/professions/request/LookupProfessionCodesRequest.html index e11f3657c..0c593f67b 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/request/LookupProfessionCodesRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/request/LookupProfessionCodesRequest.html @@ -2,10 +2,10 @@ - + LookupProfessionCodesRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/request/NormalizeProfessionsRequest.html b/docs/com/sovren/models/api/dataenrichment/professions/request/NormalizeProfessionsRequest.html index 84b7513c7..32ae2b0b0 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/request/NormalizeProfessionsRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/request/NormalizeProfessionsRequest.html @@ -2,10 +2,10 @@ - + NormalizeProfessionsRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/request/class-use/LookupProfessionCodesRequest.html b/docs/com/sovren/models/api/dataenrichment/professions/request/class-use/LookupProfessionCodesRequest.html index 769821d4b..cbcd8733f 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/request/class-use/LookupProfessionCodesRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/request/class-use/LookupProfessionCodesRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.professions.request.LookupProfessionCodesRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/request/class-use/NormalizeProfessionsRequest.html b/docs/com/sovren/models/api/dataenrichment/professions/request/class-use/NormalizeProfessionsRequest.html index 89d934c4f..af7759a8e 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/request/class-use/NormalizeProfessionsRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/request/class-use/NormalizeProfessionsRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.professions.request.NormalizeProfessionsRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/request/package-frame.html b/docs/com/sovren/models/api/dataenrichment/professions/request/package-frame.html index b508c4fa6..29b002875 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/request/package-frame.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/request/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment.professions.request (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/request/package-summary.html b/docs/com/sovren/models/api/dataenrichment/professions/request/package-summary.html index 7b14a7155..59c1ee0b4 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/request/package-summary.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/request/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment.professions.request (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/request/package-tree.html b/docs/com/sovren/models/api/dataenrichment/professions/request/package-tree.html index 56340824b..464de3ed0 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/request/package-tree.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/request/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment.professions.request Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/request/package-use.html b/docs/com/sovren/models/api/dataenrichment/professions/request/package-use.html index 6654015f7..aaed9f632 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/request/package-use.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/request/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.models.api.dataenrichment.professions.request (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/response/GetProfessionsTaxonomyResponse.html b/docs/com/sovren/models/api/dataenrichment/professions/response/GetProfessionsTaxonomyResponse.html index 61e2fe6a3..466338abf 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/response/GetProfessionsTaxonomyResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/response/GetProfessionsTaxonomyResponse.html @@ -2,10 +2,10 @@ - + GetProfessionsTaxonomyResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/response/GetProfessionsTaxonomyResponseValue.html b/docs/com/sovren/models/api/dataenrichment/professions/response/GetProfessionsTaxonomyResponseValue.html index ece32c756..b2d890f85 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/response/GetProfessionsTaxonomyResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/response/GetProfessionsTaxonomyResponseValue.html @@ -2,10 +2,10 @@ - + GetProfessionsTaxonomyResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/response/LookupProfessionCodesResponse.html b/docs/com/sovren/models/api/dataenrichment/professions/response/LookupProfessionCodesResponse.html index 83b89f079..21791752b 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/response/LookupProfessionCodesResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/response/LookupProfessionCodesResponse.html @@ -2,10 +2,10 @@ - + LookupProfessionCodesResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/response/LookupProfessionCodesResponseValue.html b/docs/com/sovren/models/api/dataenrichment/professions/response/LookupProfessionCodesResponseValue.html index 9a9c6e935..f56db02ed 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/response/LookupProfessionCodesResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/response/LookupProfessionCodesResponseValue.html @@ -2,10 +2,10 @@ - + LookupProfessionCodesResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/response/NormalizeProfessionsResponse.html b/docs/com/sovren/models/api/dataenrichment/professions/response/NormalizeProfessionsResponse.html index 7626923fd..781b00dfa 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/response/NormalizeProfessionsResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/response/NormalizeProfessionsResponse.html @@ -2,10 +2,10 @@ - + NormalizeProfessionsResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/response/NormalizeProfessionsResponseValue.html b/docs/com/sovren/models/api/dataenrichment/professions/response/NormalizeProfessionsResponseValue.html index 00f0e8ba1..087b820ba 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/response/NormalizeProfessionsResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/response/NormalizeProfessionsResponseValue.html @@ -2,10 +2,10 @@ - + NormalizeProfessionsResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/response/ProfessionsAutoCompleteResponse.html b/docs/com/sovren/models/api/dataenrichment/professions/response/ProfessionsAutoCompleteResponse.html index 5d162a819..8204a72f3 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/response/ProfessionsAutoCompleteResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/response/ProfessionsAutoCompleteResponse.html @@ -2,10 +2,10 @@ - + ProfessionsAutoCompleteResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/response/ProfessionsAutoCompleteResponseValue.html b/docs/com/sovren/models/api/dataenrichment/professions/response/ProfessionsAutoCompleteResponseValue.html index 03a650a5d..60c3579de 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/response/ProfessionsAutoCompleteResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/response/ProfessionsAutoCompleteResponseValue.html @@ -2,10 +2,10 @@ - + ProfessionsAutoCompleteResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/GetProfessionsTaxonomyResponse.html b/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/GetProfessionsTaxonomyResponse.html index 80003bb2c..af74b1ee0 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/GetProfessionsTaxonomyResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/GetProfessionsTaxonomyResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.professions.response.GetProfessionsTaxonomyResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/GetProfessionsTaxonomyResponseValue.html b/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/GetProfessionsTaxonomyResponseValue.html index efb9ecac5..e130cad29 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/GetProfessionsTaxonomyResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/GetProfessionsTaxonomyResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.professions.response.GetProfessionsTaxonomyResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/LookupProfessionCodesResponse.html b/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/LookupProfessionCodesResponse.html index 4e1fc641c..f73020655 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/LookupProfessionCodesResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/LookupProfessionCodesResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.professions.response.LookupProfessionCodesResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/LookupProfessionCodesResponseValue.html b/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/LookupProfessionCodesResponseValue.html index 9e3f05fd5..7a2510140 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/LookupProfessionCodesResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/LookupProfessionCodesResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.professions.response.LookupProfessionCodesResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/NormalizeProfessionsResponse.html b/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/NormalizeProfessionsResponse.html index b602f8dc3..f45cd2734 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/NormalizeProfessionsResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/NormalizeProfessionsResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.professions.response.NormalizeProfessionsResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/NormalizeProfessionsResponseValue.html b/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/NormalizeProfessionsResponseValue.html index d50a426b2..0fbfc539f 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/NormalizeProfessionsResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/NormalizeProfessionsResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.professions.response.NormalizeProfessionsResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/ProfessionsAutoCompleteResponse.html b/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/ProfessionsAutoCompleteResponse.html index 59a0193fc..11430e659 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/ProfessionsAutoCompleteResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/ProfessionsAutoCompleteResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.professions.response.ProfessionsAutoCompleteResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/ProfessionsAutoCompleteResponseValue.html b/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/ProfessionsAutoCompleteResponseValue.html index c9a21eeba..4b8bee3b6 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/ProfessionsAutoCompleteResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/response/class-use/ProfessionsAutoCompleteResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.professions.response.ProfessionsAutoCompleteResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/response/package-frame.html b/docs/com/sovren/models/api/dataenrichment/professions/response/package-frame.html index 32a718ec5..e1c3bd11d 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/response/package-frame.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/response/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment.professions.response (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/response/package-summary.html b/docs/com/sovren/models/api/dataenrichment/professions/response/package-summary.html index d872d2320..dd2dd1060 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/response/package-summary.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/response/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment.professions.response (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/response/package-tree.html b/docs/com/sovren/models/api/dataenrichment/professions/response/package-tree.html index 6dd51c953..8d9b34390 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/response/package-tree.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/response/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment.professions.response Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/professions/response/package-use.html b/docs/com/sovren/models/api/dataenrichment/professions/response/package-use.html index 8e472e151..0b8c99217 100644 --- a/docs/com/sovren/models/api/dataenrichment/professions/response/package-use.html +++ b/docs/com/sovren/models/api/dataenrichment/professions/response/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.models.api.dataenrichment.professions.response (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/request/ExtractSkillsRequest.html b/docs/com/sovren/models/api/dataenrichment/skills/request/ExtractSkillsRequest.html index 9f2d5fefa..b17e665b7 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/request/ExtractSkillsRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/request/ExtractSkillsRequest.html @@ -2,10 +2,10 @@ - + ExtractSkillsRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/request/LookupSkillsRequest.html b/docs/com/sovren/models/api/dataenrichment/skills/request/LookupSkillsRequest.html index 7791ea98c..4e26a23b5 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/request/LookupSkillsRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/request/LookupSkillsRequest.html @@ -2,10 +2,10 @@ - + LookupSkillsRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/request/NormalizeSkillsRequest.html b/docs/com/sovren/models/api/dataenrichment/skills/request/NormalizeSkillsRequest.html index 44110647d..96f8f33ce 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/request/NormalizeSkillsRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/request/NormalizeSkillsRequest.html @@ -2,10 +2,10 @@ - + NormalizeSkillsRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/request/SkillsAutoCompleteRequest.html b/docs/com/sovren/models/api/dataenrichment/skills/request/SkillsAutoCompleteRequest.html index 7b6361aaf..86fc498eb 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/request/SkillsAutoCompleteRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/request/SkillsAutoCompleteRequest.html @@ -2,10 +2,10 @@ - + SkillsAutoCompleteRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/request/class-use/ExtractSkillsRequest.html b/docs/com/sovren/models/api/dataenrichment/skills/request/class-use/ExtractSkillsRequest.html index 2e43af9be..a6674110d 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/request/class-use/ExtractSkillsRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/request/class-use/ExtractSkillsRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.skills.request.ExtractSkillsRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/request/class-use/LookupSkillsRequest.html b/docs/com/sovren/models/api/dataenrichment/skills/request/class-use/LookupSkillsRequest.html index 69dc730c2..3b7e6bb83 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/request/class-use/LookupSkillsRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/request/class-use/LookupSkillsRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.skills.request.LookupSkillsRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/request/class-use/NormalizeSkillsRequest.html b/docs/com/sovren/models/api/dataenrichment/skills/request/class-use/NormalizeSkillsRequest.html index 393745eed..6ff54e38b 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/request/class-use/NormalizeSkillsRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/request/class-use/NormalizeSkillsRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.skills.request.NormalizeSkillsRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/request/class-use/SkillsAutoCompleteRequest.html b/docs/com/sovren/models/api/dataenrichment/skills/request/class-use/SkillsAutoCompleteRequest.html index 4f40bac50..e59b1c7c2 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/request/class-use/SkillsAutoCompleteRequest.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/request/class-use/SkillsAutoCompleteRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.skills.request.SkillsAutoCompleteRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/request/package-frame.html b/docs/com/sovren/models/api/dataenrichment/skills/request/package-frame.html index 674018de0..4c0d5a96a 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/request/package-frame.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/request/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment.skills.request (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/request/package-summary.html b/docs/com/sovren/models/api/dataenrichment/skills/request/package-summary.html index e87eb0d09..ad52f08b2 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/request/package-summary.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/request/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment.skills.request (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/request/package-tree.html b/docs/com/sovren/models/api/dataenrichment/skills/request/package-tree.html index 7ffe5e54e..ed59e99ff 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/request/package-tree.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/request/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment.skills.request Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/request/package-use.html b/docs/com/sovren/models/api/dataenrichment/skills/request/package-use.html index c76b9fe29..2ab9f96a8 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/request/package-use.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/request/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.models.api.dataenrichment.skills.request (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/AutoCompleteSkillsResponse.html b/docs/com/sovren/models/api/dataenrichment/skills/response/AutoCompleteSkillsResponse.html index 5e7e426b9..91860dab8 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/AutoCompleteSkillsResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/AutoCompleteSkillsResponse.html @@ -2,10 +2,10 @@ - + AutoCompleteSkillsResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/AutocompleteSkillsResponseValue.html b/docs/com/sovren/models/api/dataenrichment/skills/response/AutocompleteSkillsResponseValue.html index 072cd29fb..8ecf3ef3a 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/AutocompleteSkillsResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/AutocompleteSkillsResponseValue.html @@ -2,10 +2,10 @@ - + AutocompleteSkillsResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/ExtractSkillsResponse.html b/docs/com/sovren/models/api/dataenrichment/skills/response/ExtractSkillsResponse.html index 398f087aa..c63a8fa1f 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/ExtractSkillsResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/ExtractSkillsResponse.html @@ -2,10 +2,10 @@ - + ExtractSkillsResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/ExtractSkillsResponseValue.html b/docs/com/sovren/models/api/dataenrichment/skills/response/ExtractSkillsResponseValue.html index 6d6d1d7ac..3d52bd7fe 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/ExtractSkillsResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/ExtractSkillsResponseValue.html @@ -2,10 +2,10 @@ - + ExtractSkillsResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/GetSkillsTaxonomyResponse.html b/docs/com/sovren/models/api/dataenrichment/skills/response/GetSkillsTaxonomyResponse.html index 283b180cd..ff66a5987 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/GetSkillsTaxonomyResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/GetSkillsTaxonomyResponse.html @@ -2,10 +2,10 @@ - + GetSkillsTaxonomyResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/GetSkillsTaxonomyResponseValue.html b/docs/com/sovren/models/api/dataenrichment/skills/response/GetSkillsTaxonomyResponseValue.html index 9096b31de..53e47703d 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/GetSkillsTaxonomyResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/GetSkillsTaxonomyResponseValue.html @@ -2,10 +2,10 @@ - + GetSkillsTaxonomyResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/LookupSkillCodesResponse.html b/docs/com/sovren/models/api/dataenrichment/skills/response/LookupSkillCodesResponse.html index 4a1f9d538..9cbb7f132 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/LookupSkillCodesResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/LookupSkillCodesResponse.html @@ -2,10 +2,10 @@ - + LookupSkillCodesResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/LookupSkillCodesResponseValue.html b/docs/com/sovren/models/api/dataenrichment/skills/response/LookupSkillCodesResponseValue.html index 6edaf8b27..07af657ec 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/LookupSkillCodesResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/LookupSkillCodesResponseValue.html @@ -2,10 +2,10 @@ - + LookupSkillCodesResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/NormalizeSkillsResponse.html b/docs/com/sovren/models/api/dataenrichment/skills/response/NormalizeSkillsResponse.html index a7a50dd46..8cc8aae6f 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/NormalizeSkillsResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/NormalizeSkillsResponse.html @@ -2,10 +2,10 @@ - + NormalizeSkillsResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/NormalizeSkillsResponseValue.html b/docs/com/sovren/models/api/dataenrichment/skills/response/NormalizeSkillsResponseValue.html index 2a51c903f..ac3143b96 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/NormalizeSkillsResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/NormalizeSkillsResponseValue.html @@ -2,10 +2,10 @@ - + NormalizeSkillsResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/AutoCompleteSkillsResponse.html b/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/AutoCompleteSkillsResponse.html index 62de9db70..b78b59cfb 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/AutoCompleteSkillsResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/AutoCompleteSkillsResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.skills.response.AutoCompleteSkillsResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/AutocompleteSkillsResponseValue.html b/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/AutocompleteSkillsResponseValue.html index 59d3cb8fa..68760e049 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/AutocompleteSkillsResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/AutocompleteSkillsResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.skills.response.AutocompleteSkillsResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/ExtractSkillsResponse.html b/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/ExtractSkillsResponse.html index cf24edde7..44ef1e7e7 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/ExtractSkillsResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/ExtractSkillsResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.skills.response.ExtractSkillsResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/ExtractSkillsResponseValue.html b/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/ExtractSkillsResponseValue.html index f486f7dcd..ee1b1d45c 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/ExtractSkillsResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/ExtractSkillsResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.skills.response.ExtractSkillsResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/GetSkillsTaxonomyResponse.html b/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/GetSkillsTaxonomyResponse.html index 77380a936..d69e127ac 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/GetSkillsTaxonomyResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/GetSkillsTaxonomyResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.skills.response.GetSkillsTaxonomyResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/GetSkillsTaxonomyResponseValue.html b/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/GetSkillsTaxonomyResponseValue.html index df751bec9..e4a3988d7 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/GetSkillsTaxonomyResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/GetSkillsTaxonomyResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.skills.response.GetSkillsTaxonomyResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/LookupSkillCodesResponse.html b/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/LookupSkillCodesResponse.html index 213f8c573..ed5089ebd 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/LookupSkillCodesResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/LookupSkillCodesResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.skills.response.LookupSkillCodesResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/LookupSkillCodesResponseValue.html b/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/LookupSkillCodesResponseValue.html index c47962803..d5cfcb134 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/LookupSkillCodesResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/LookupSkillCodesResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.skills.response.LookupSkillCodesResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/NormalizeSkillsResponse.html b/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/NormalizeSkillsResponse.html index b740e1737..07f720eb9 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/NormalizeSkillsResponse.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/NormalizeSkillsResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.skills.response.NormalizeSkillsResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/NormalizeSkillsResponseValue.html b/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/NormalizeSkillsResponseValue.html index e09e20f0d..aa980541d 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/NormalizeSkillsResponseValue.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/class-use/NormalizeSkillsResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.dataenrichment.skills.response.NormalizeSkillsResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/package-frame.html b/docs/com/sovren/models/api/dataenrichment/skills/response/package-frame.html index 4d194b570..8e1c2d766 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/package-frame.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment.skills.response (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/package-summary.html b/docs/com/sovren/models/api/dataenrichment/skills/response/package-summary.html index 2eae822c4..b6708b7a8 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/package-summary.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment.skills.response (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/package-tree.html b/docs/com/sovren/models/api/dataenrichment/skills/response/package-tree.html index 0aea988be..e69eb381a 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/package-tree.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.dataenrichment.skills.response Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/dataenrichment/skills/response/package-use.html b/docs/com/sovren/models/api/dataenrichment/skills/response/package-use.html index 25d335530..967ebcdf3 100644 --- a/docs/com/sovren/models/api/dataenrichment/skills/response/package-use.html +++ b/docs/com/sovren/models/api/dataenrichment/skills/response/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.models.api.dataenrichment.skills.response (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/Address.html b/docs/com/sovren/models/api/geocoding/Address.html index a506179b5..7b75e11c5 100644 --- a/docs/com/sovren/models/api/geocoding/Address.html +++ b/docs/com/sovren/models/api/geocoding/Address.html @@ -2,10 +2,10 @@ - + Address (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/GeocodeAndIndexJobRequest.html b/docs/com/sovren/models/api/geocoding/GeocodeAndIndexJobRequest.html index b962365e3..abfa54e99 100644 --- a/docs/com/sovren/models/api/geocoding/GeocodeAndIndexJobRequest.html +++ b/docs/com/sovren/models/api/geocoding/GeocodeAndIndexJobRequest.html @@ -2,10 +2,10 @@ - + GeocodeAndIndexJobRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/GeocodeAndIndexJobResponse.html b/docs/com/sovren/models/api/geocoding/GeocodeAndIndexJobResponse.html index 8364a76a0..245eef170 100644 --- a/docs/com/sovren/models/api/geocoding/GeocodeAndIndexJobResponse.html +++ b/docs/com/sovren/models/api/geocoding/GeocodeAndIndexJobResponse.html @@ -2,10 +2,10 @@ - + GeocodeAndIndexJobResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/GeocodeAndIndexJobResponseValue.html b/docs/com/sovren/models/api/geocoding/GeocodeAndIndexJobResponseValue.html index 412430ce6..87802fceb 100644 --- a/docs/com/sovren/models/api/geocoding/GeocodeAndIndexJobResponseValue.html +++ b/docs/com/sovren/models/api/geocoding/GeocodeAndIndexJobResponseValue.html @@ -2,10 +2,10 @@ - + GeocodeAndIndexJobResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/GeocodeAndIndexRequest.html b/docs/com/sovren/models/api/geocoding/GeocodeAndIndexRequest.html index c3bdbf8d1..694d91579 100644 --- a/docs/com/sovren/models/api/geocoding/GeocodeAndIndexRequest.html +++ b/docs/com/sovren/models/api/geocoding/GeocodeAndIndexRequest.html @@ -2,10 +2,10 @@ - + GeocodeAndIndexRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/GeocodeAndIndexResponseValue.html b/docs/com/sovren/models/api/geocoding/GeocodeAndIndexResponseValue.html index f0327c8c5..5b06f989c 100644 --- a/docs/com/sovren/models/api/geocoding/GeocodeAndIndexResponseValue.html +++ b/docs/com/sovren/models/api/geocoding/GeocodeAndIndexResponseValue.html @@ -2,10 +2,10 @@ - + GeocodeAndIndexResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/GeocodeAndIndexResumeRequest.html b/docs/com/sovren/models/api/geocoding/GeocodeAndIndexResumeRequest.html index edfbc6b11..5e69fc146 100644 --- a/docs/com/sovren/models/api/geocoding/GeocodeAndIndexResumeRequest.html +++ b/docs/com/sovren/models/api/geocoding/GeocodeAndIndexResumeRequest.html @@ -2,10 +2,10 @@ - + GeocodeAndIndexResumeRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/GeocodeAndIndexResumeResponse.html b/docs/com/sovren/models/api/geocoding/GeocodeAndIndexResumeResponse.html index a5ea88689..c291a1cfa 100644 --- a/docs/com/sovren/models/api/geocoding/GeocodeAndIndexResumeResponse.html +++ b/docs/com/sovren/models/api/geocoding/GeocodeAndIndexResumeResponse.html @@ -2,10 +2,10 @@ - + GeocodeAndIndexResumeResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/GeocodeAndIndexResumeResponseValue.html b/docs/com/sovren/models/api/geocoding/GeocodeAndIndexResumeResponseValue.html index 8b2081d84..74d9ecdb0 100644 --- a/docs/com/sovren/models/api/geocoding/GeocodeAndIndexResumeResponseValue.html +++ b/docs/com/sovren/models/api/geocoding/GeocodeAndIndexResumeResponseValue.html @@ -2,10 +2,10 @@ - + GeocodeAndIndexResumeResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/GeocodeCredentials.html b/docs/com/sovren/models/api/geocoding/GeocodeCredentials.html index d454a4ca8..33edf3128 100644 --- a/docs/com/sovren/models/api/geocoding/GeocodeCredentials.html +++ b/docs/com/sovren/models/api/geocoding/GeocodeCredentials.html @@ -2,10 +2,10 @@ - + GeocodeCredentials (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/GeocodeJobRequest.html b/docs/com/sovren/models/api/geocoding/GeocodeJobRequest.html index 5a591176d..27f6c55fc 100644 --- a/docs/com/sovren/models/api/geocoding/GeocodeJobRequest.html +++ b/docs/com/sovren/models/api/geocoding/GeocodeJobRequest.html @@ -2,10 +2,10 @@ - + GeocodeJobRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/GeocodeJobResponse.html b/docs/com/sovren/models/api/geocoding/GeocodeJobResponse.html index f9d76e1e5..597a052a2 100644 --- a/docs/com/sovren/models/api/geocoding/GeocodeJobResponse.html +++ b/docs/com/sovren/models/api/geocoding/GeocodeJobResponse.html @@ -2,10 +2,10 @@ - + GeocodeJobResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/GeocodeJobResponseValue.html b/docs/com/sovren/models/api/geocoding/GeocodeJobResponseValue.html index 4accec94e..899ce3260 100644 --- a/docs/com/sovren/models/api/geocoding/GeocodeJobResponseValue.html +++ b/docs/com/sovren/models/api/geocoding/GeocodeJobResponseValue.html @@ -2,10 +2,10 @@ - + GeocodeJobResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/GeocodeOptions.html b/docs/com/sovren/models/api/geocoding/GeocodeOptions.html index d717b97d2..a99d6823b 100644 --- a/docs/com/sovren/models/api/geocoding/GeocodeOptions.html +++ b/docs/com/sovren/models/api/geocoding/GeocodeOptions.html @@ -2,10 +2,10 @@ - + GeocodeOptions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/GeocodeOptionsBase.html b/docs/com/sovren/models/api/geocoding/GeocodeOptionsBase.html index 2ad2b06d5..376c78472 100644 --- a/docs/com/sovren/models/api/geocoding/GeocodeOptionsBase.html +++ b/docs/com/sovren/models/api/geocoding/GeocodeOptionsBase.html @@ -2,10 +2,10 @@ - + GeocodeOptionsBase (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/GeocodeProvider.html b/docs/com/sovren/models/api/geocoding/GeocodeProvider.html index c86899ca9..97bffcf15 100644 --- a/docs/com/sovren/models/api/geocoding/GeocodeProvider.html +++ b/docs/com/sovren/models/api/geocoding/GeocodeProvider.html @@ -2,10 +2,10 @@ - + GeocodeProvider (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/GeocodeResumeRequest.html b/docs/com/sovren/models/api/geocoding/GeocodeResumeRequest.html index 09e645bb8..37baa576d 100644 --- a/docs/com/sovren/models/api/geocoding/GeocodeResumeRequest.html +++ b/docs/com/sovren/models/api/geocoding/GeocodeResumeRequest.html @@ -2,10 +2,10 @@ - + GeocodeResumeRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/GeocodeResumeResponse.html b/docs/com/sovren/models/api/geocoding/GeocodeResumeResponse.html index c9ee0ed49..3856cdd3f 100644 --- a/docs/com/sovren/models/api/geocoding/GeocodeResumeResponse.html +++ b/docs/com/sovren/models/api/geocoding/GeocodeResumeResponse.html @@ -2,10 +2,10 @@ - + GeocodeResumeResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/GeocodeResumeResponseValue.html b/docs/com/sovren/models/api/geocoding/GeocodeResumeResponseValue.html index 863a84261..b9f91a2a4 100644 --- a/docs/com/sovren/models/api/geocoding/GeocodeResumeResponseValue.html +++ b/docs/com/sovren/models/api/geocoding/GeocodeResumeResponseValue.html @@ -2,10 +2,10 @@ - + GeocodeResumeResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/class-use/Address.html b/docs/com/sovren/models/api/geocoding/class-use/Address.html index 08178c322..872a56465 100644 --- a/docs/com/sovren/models/api/geocoding/class-use/Address.html +++ b/docs/com/sovren/models/api/geocoding/class-use/Address.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.geocoding.Address (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexJobRequest.html b/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexJobRequest.html index 543999775..bad2b3157 100644 --- a/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexJobRequest.html +++ b/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexJobRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.geocoding.GeocodeAndIndexJobRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexJobResponse.html b/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexJobResponse.html index 8d991573e..1fe1c46f6 100644 --- a/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexJobResponse.html +++ b/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexJobResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.geocoding.GeocodeAndIndexJobResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexJobResponseValue.html b/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexJobResponseValue.html index 7462505b0..62210450c 100644 --- a/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexJobResponseValue.html +++ b/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexJobResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.geocoding.GeocodeAndIndexJobResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexRequest.html b/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexRequest.html index 202e578b3..a4d4b9c0c 100644 --- a/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexRequest.html +++ b/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.geocoding.GeocodeAndIndexRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexResponseValue.html b/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexResponseValue.html index 7652d6bd8..be54a3b5b 100644 --- a/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexResponseValue.html +++ b/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.geocoding.GeocodeAndIndexResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexResumeRequest.html b/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexResumeRequest.html index e5977d361..c8b9ddf07 100644 --- a/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexResumeRequest.html +++ b/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexResumeRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.geocoding.GeocodeAndIndexResumeRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexResumeResponse.html b/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexResumeResponse.html index b8418b171..d6fde65ee 100644 --- a/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexResumeResponse.html +++ b/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexResumeResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.geocoding.GeocodeAndIndexResumeResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexResumeResponseValue.html b/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexResumeResponseValue.html index 2cde0cad6..5ee8d1be6 100644 --- a/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexResumeResponseValue.html +++ b/docs/com/sovren/models/api/geocoding/class-use/GeocodeAndIndexResumeResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.geocoding.GeocodeAndIndexResumeResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/class-use/GeocodeCredentials.html b/docs/com/sovren/models/api/geocoding/class-use/GeocodeCredentials.html index 1919a0370..286911ff9 100644 --- a/docs/com/sovren/models/api/geocoding/class-use/GeocodeCredentials.html +++ b/docs/com/sovren/models/api/geocoding/class-use/GeocodeCredentials.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.geocoding.GeocodeCredentials (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/class-use/GeocodeJobRequest.html b/docs/com/sovren/models/api/geocoding/class-use/GeocodeJobRequest.html index 56679e507..f02be3424 100644 --- a/docs/com/sovren/models/api/geocoding/class-use/GeocodeJobRequest.html +++ b/docs/com/sovren/models/api/geocoding/class-use/GeocodeJobRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.geocoding.GeocodeJobRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/class-use/GeocodeJobResponse.html b/docs/com/sovren/models/api/geocoding/class-use/GeocodeJobResponse.html index 4442bc2f1..06222c592 100644 --- a/docs/com/sovren/models/api/geocoding/class-use/GeocodeJobResponse.html +++ b/docs/com/sovren/models/api/geocoding/class-use/GeocodeJobResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.geocoding.GeocodeJobResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/class-use/GeocodeJobResponseValue.html b/docs/com/sovren/models/api/geocoding/class-use/GeocodeJobResponseValue.html index b2b1849e4..a3154a8b1 100644 --- a/docs/com/sovren/models/api/geocoding/class-use/GeocodeJobResponseValue.html +++ b/docs/com/sovren/models/api/geocoding/class-use/GeocodeJobResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.geocoding.GeocodeJobResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/class-use/GeocodeOptions.html b/docs/com/sovren/models/api/geocoding/class-use/GeocodeOptions.html index 3491d338f..5c4194103 100644 --- a/docs/com/sovren/models/api/geocoding/class-use/GeocodeOptions.html +++ b/docs/com/sovren/models/api/geocoding/class-use/GeocodeOptions.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.geocoding.GeocodeOptions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/class-use/GeocodeOptionsBase.html b/docs/com/sovren/models/api/geocoding/class-use/GeocodeOptionsBase.html index f7f760428..4a776f557 100644 --- a/docs/com/sovren/models/api/geocoding/class-use/GeocodeOptionsBase.html +++ b/docs/com/sovren/models/api/geocoding/class-use/GeocodeOptionsBase.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.geocoding.GeocodeOptionsBase (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/class-use/GeocodeProvider.html b/docs/com/sovren/models/api/geocoding/class-use/GeocodeProvider.html index c685edb22..b0b6d5ea5 100644 --- a/docs/com/sovren/models/api/geocoding/class-use/GeocodeProvider.html +++ b/docs/com/sovren/models/api/geocoding/class-use/GeocodeProvider.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.geocoding.GeocodeProvider (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/class-use/GeocodeResumeRequest.html b/docs/com/sovren/models/api/geocoding/class-use/GeocodeResumeRequest.html index 516931eb7..ea8e8a998 100644 --- a/docs/com/sovren/models/api/geocoding/class-use/GeocodeResumeRequest.html +++ b/docs/com/sovren/models/api/geocoding/class-use/GeocodeResumeRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.geocoding.GeocodeResumeRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/class-use/GeocodeResumeResponse.html b/docs/com/sovren/models/api/geocoding/class-use/GeocodeResumeResponse.html index 259de81b7..17d237b3d 100644 --- a/docs/com/sovren/models/api/geocoding/class-use/GeocodeResumeResponse.html +++ b/docs/com/sovren/models/api/geocoding/class-use/GeocodeResumeResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.geocoding.GeocodeResumeResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/class-use/GeocodeResumeResponseValue.html b/docs/com/sovren/models/api/geocoding/class-use/GeocodeResumeResponseValue.html index d66a3daa2..f56a73f43 100644 --- a/docs/com/sovren/models/api/geocoding/class-use/GeocodeResumeResponseValue.html +++ b/docs/com/sovren/models/api/geocoding/class-use/GeocodeResumeResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.geocoding.GeocodeResumeResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/package-frame.html b/docs/com/sovren/models/api/geocoding/package-frame.html index 4b3e309c5..93e50f15e 100644 --- a/docs/com/sovren/models/api/geocoding/package-frame.html +++ b/docs/com/sovren/models/api/geocoding/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.geocoding (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/package-summary.html b/docs/com/sovren/models/api/geocoding/package-summary.html index ce5987ac1..ad925d399 100644 --- a/docs/com/sovren/models/api/geocoding/package-summary.html +++ b/docs/com/sovren/models/api/geocoding/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.geocoding (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/package-tree.html b/docs/com/sovren/models/api/geocoding/package-tree.html index 33a5ded8c..3d6a94e46 100644 --- a/docs/com/sovren/models/api/geocoding/package-tree.html +++ b/docs/com/sovren/models/api/geocoding/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.geocoding Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/geocoding/package-use.html b/docs/com/sovren/models/api/geocoding/package-use.html index 7009c3a9e..3d73f62d4 100644 --- a/docs/com/sovren/models/api/geocoding/package-use.html +++ b/docs/com/sovren/models/api/geocoding/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.models.api.geocoding (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/CreateIndexRequest.html b/docs/com/sovren/models/api/indexes/CreateIndexRequest.html index c8e3486b9..c483c8bb8 100644 --- a/docs/com/sovren/models/api/indexes/CreateIndexRequest.html +++ b/docs/com/sovren/models/api/indexes/CreateIndexRequest.html @@ -2,10 +2,10 @@ - + CreateIndexRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/CreateIndexResponse.html b/docs/com/sovren/models/api/indexes/CreateIndexResponse.html index 0ac43c2c7..aef0e4677 100644 --- a/docs/com/sovren/models/api/indexes/CreateIndexResponse.html +++ b/docs/com/sovren/models/api/indexes/CreateIndexResponse.html @@ -2,10 +2,10 @@ - + CreateIndexResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/DeleteDocumentResponse.html b/docs/com/sovren/models/api/indexes/DeleteDocumentResponse.html index 019b02fdb..e9b4c265c 100644 --- a/docs/com/sovren/models/api/indexes/DeleteDocumentResponse.html +++ b/docs/com/sovren/models/api/indexes/DeleteDocumentResponse.html @@ -2,10 +2,10 @@ - + DeleteDocumentResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/DeleteIndexResponse.html b/docs/com/sovren/models/api/indexes/DeleteIndexResponse.html index b6753e9a9..2af573a98 100644 --- a/docs/com/sovren/models/api/indexes/DeleteIndexResponse.html +++ b/docs/com/sovren/models/api/indexes/DeleteIndexResponse.html @@ -2,10 +2,10 @@ - + DeleteIndexResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/DeleteMultipleDocumentsResponse.html b/docs/com/sovren/models/api/indexes/DeleteMultipleDocumentsResponse.html index 79f8b48da..2cb8050cf 100644 --- a/docs/com/sovren/models/api/indexes/DeleteMultipleDocumentsResponse.html +++ b/docs/com/sovren/models/api/indexes/DeleteMultipleDocumentsResponse.html @@ -2,10 +2,10 @@ - + DeleteMultipleDocumentsResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/GetAllIndexesResponse.html b/docs/com/sovren/models/api/indexes/GetAllIndexesResponse.html index a5c255cb5..6192d40e5 100644 --- a/docs/com/sovren/models/api/indexes/GetAllIndexesResponse.html +++ b/docs/com/sovren/models/api/indexes/GetAllIndexesResponse.html @@ -2,10 +2,10 @@ - + GetAllIndexesResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/GetIndexResponse.html b/docs/com/sovren/models/api/indexes/GetIndexResponse.html index f75a3aa21..2f8b28007 100644 --- a/docs/com/sovren/models/api/indexes/GetIndexResponse.html +++ b/docs/com/sovren/models/api/indexes/GetIndexResponse.html @@ -2,10 +2,10 @@ - + GetIndexResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/GetJobResponse.html b/docs/com/sovren/models/api/indexes/GetJobResponse.html index 9464f07d6..8a655329a 100644 --- a/docs/com/sovren/models/api/indexes/GetJobResponse.html +++ b/docs/com/sovren/models/api/indexes/GetJobResponse.html @@ -2,10 +2,10 @@ - + GetJobResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/GetResumeResponse.html b/docs/com/sovren/models/api/indexes/GetResumeResponse.html index 45117891b..9f2a5dede 100644 --- a/docs/com/sovren/models/api/indexes/GetResumeResponse.html +++ b/docs/com/sovren/models/api/indexes/GetResumeResponse.html @@ -2,10 +2,10 @@ - + GetResumeResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/IndexDocumentRequest.html b/docs/com/sovren/models/api/indexes/IndexDocumentRequest.html index c9c049395..238bb2c0a 100644 --- a/docs/com/sovren/models/api/indexes/IndexDocumentRequest.html +++ b/docs/com/sovren/models/api/indexes/IndexDocumentRequest.html @@ -2,10 +2,10 @@ - + IndexDocumentRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/IndexDocumentResponse.html b/docs/com/sovren/models/api/indexes/IndexDocumentResponse.html index c4fa84809..9edc4f349 100644 --- a/docs/com/sovren/models/api/indexes/IndexDocumentResponse.html +++ b/docs/com/sovren/models/api/indexes/IndexDocumentResponse.html @@ -2,10 +2,10 @@ - + IndexDocumentResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/IndexJobInfo.html b/docs/com/sovren/models/api/indexes/IndexJobInfo.html index ac7f18ae8..de7fd63fe 100644 --- a/docs/com/sovren/models/api/indexes/IndexJobInfo.html +++ b/docs/com/sovren/models/api/indexes/IndexJobInfo.html @@ -2,10 +2,10 @@ - + IndexJobInfo (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/IndexJobRequest.html b/docs/com/sovren/models/api/indexes/IndexJobRequest.html index 9a3ce8d77..4c6926926 100644 --- a/docs/com/sovren/models/api/indexes/IndexJobRequest.html +++ b/docs/com/sovren/models/api/indexes/IndexJobRequest.html @@ -2,10 +2,10 @@ - + IndexJobRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/IndexMultipleDocumentInfo.html b/docs/com/sovren/models/api/indexes/IndexMultipleDocumentInfo.html index c8e8b6651..40811c5d6 100644 --- a/docs/com/sovren/models/api/indexes/IndexMultipleDocumentInfo.html +++ b/docs/com/sovren/models/api/indexes/IndexMultipleDocumentInfo.html @@ -2,10 +2,10 @@ - + IndexMultipleDocumentInfo (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/IndexMultipleDocumentsResponse.html b/docs/com/sovren/models/api/indexes/IndexMultipleDocumentsResponse.html index fe735a40f..02b130cae 100644 --- a/docs/com/sovren/models/api/indexes/IndexMultipleDocumentsResponse.html +++ b/docs/com/sovren/models/api/indexes/IndexMultipleDocumentsResponse.html @@ -2,10 +2,10 @@ - + IndexMultipleDocumentsResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/IndexMultipleDocumentsResponseValue.html b/docs/com/sovren/models/api/indexes/IndexMultipleDocumentsResponseValue.html index 740a2d539..9f52b7b99 100644 --- a/docs/com/sovren/models/api/indexes/IndexMultipleDocumentsResponseValue.html +++ b/docs/com/sovren/models/api/indexes/IndexMultipleDocumentsResponseValue.html @@ -2,10 +2,10 @@ - + IndexMultipleDocumentsResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/IndexMultipleJobsRequest.html b/docs/com/sovren/models/api/indexes/IndexMultipleJobsRequest.html index bdb87b8e9..c3891010a 100644 --- a/docs/com/sovren/models/api/indexes/IndexMultipleJobsRequest.html +++ b/docs/com/sovren/models/api/indexes/IndexMultipleJobsRequest.html @@ -2,10 +2,10 @@ - + IndexMultipleJobsRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/IndexMultipleResumesRequest.html b/docs/com/sovren/models/api/indexes/IndexMultipleResumesRequest.html index a4bd2839b..6c3ec5615 100644 --- a/docs/com/sovren/models/api/indexes/IndexMultipleResumesRequest.html +++ b/docs/com/sovren/models/api/indexes/IndexMultipleResumesRequest.html @@ -2,10 +2,10 @@ - + IndexMultipleResumesRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/IndexResumeInfo.html b/docs/com/sovren/models/api/indexes/IndexResumeInfo.html index 970c068f9..ee9f2085b 100644 --- a/docs/com/sovren/models/api/indexes/IndexResumeInfo.html +++ b/docs/com/sovren/models/api/indexes/IndexResumeInfo.html @@ -2,10 +2,10 @@ - + IndexResumeInfo (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/IndexResumeRequest.html b/docs/com/sovren/models/api/indexes/IndexResumeRequest.html index 6e5079c18..41574dceb 100644 --- a/docs/com/sovren/models/api/indexes/IndexResumeRequest.html +++ b/docs/com/sovren/models/api/indexes/IndexResumeRequest.html @@ -2,10 +2,10 @@ - + IndexResumeRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/IndexSingleDocumentInfo.html b/docs/com/sovren/models/api/indexes/IndexSingleDocumentInfo.html index 2f4cd6411..68b74f620 100644 --- a/docs/com/sovren/models/api/indexes/IndexSingleDocumentInfo.html +++ b/docs/com/sovren/models/api/indexes/IndexSingleDocumentInfo.html @@ -2,10 +2,10 @@ - + IndexSingleDocumentInfo (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/IndexedDocumentInfo.html b/docs/com/sovren/models/api/indexes/IndexedDocumentInfo.html index be0aade8b..684e9fd22 100644 --- a/docs/com/sovren/models/api/indexes/IndexedDocumentInfo.html +++ b/docs/com/sovren/models/api/indexes/IndexedDocumentInfo.html @@ -2,10 +2,10 @@ - + IndexedDocumentInfo (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/UpdateUserDefinedTagsRequest.html b/docs/com/sovren/models/api/indexes/UpdateUserDefinedTagsRequest.html index 43887235b..ce99e483f 100644 --- a/docs/com/sovren/models/api/indexes/UpdateUserDefinedTagsRequest.html +++ b/docs/com/sovren/models/api/indexes/UpdateUserDefinedTagsRequest.html @@ -2,10 +2,10 @@ - + UpdateUserDefinedTagsRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/UpdateUserDefinedTagsResponse.html b/docs/com/sovren/models/api/indexes/UpdateUserDefinedTagsResponse.html index 3b01fe65d..0ac323373 100644 --- a/docs/com/sovren/models/api/indexes/UpdateUserDefinedTagsResponse.html +++ b/docs/com/sovren/models/api/indexes/UpdateUserDefinedTagsResponse.html @@ -2,10 +2,10 @@ - + UpdateUserDefinedTagsResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/UserDefinedTagsMethod.html b/docs/com/sovren/models/api/indexes/UserDefinedTagsMethod.html index e8d045e5e..71b07db42 100644 --- a/docs/com/sovren/models/api/indexes/UserDefinedTagsMethod.html +++ b/docs/com/sovren/models/api/indexes/UserDefinedTagsMethod.html @@ -2,10 +2,10 @@ - + UserDefinedTagsMethod (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/CreateIndexRequest.html b/docs/com/sovren/models/api/indexes/class-use/CreateIndexRequest.html index 882e397dd..1f2b590a7 100644 --- a/docs/com/sovren/models/api/indexes/class-use/CreateIndexRequest.html +++ b/docs/com/sovren/models/api/indexes/class-use/CreateIndexRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.CreateIndexRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/CreateIndexResponse.html b/docs/com/sovren/models/api/indexes/class-use/CreateIndexResponse.html index 6451a0bc9..038cf4d64 100644 --- a/docs/com/sovren/models/api/indexes/class-use/CreateIndexResponse.html +++ b/docs/com/sovren/models/api/indexes/class-use/CreateIndexResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.CreateIndexResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/DeleteDocumentResponse.html b/docs/com/sovren/models/api/indexes/class-use/DeleteDocumentResponse.html index 403551cbd..8a29c69d1 100644 --- a/docs/com/sovren/models/api/indexes/class-use/DeleteDocumentResponse.html +++ b/docs/com/sovren/models/api/indexes/class-use/DeleteDocumentResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.DeleteDocumentResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/DeleteIndexResponse.html b/docs/com/sovren/models/api/indexes/class-use/DeleteIndexResponse.html index 21f4edbaa..551bf00c8 100644 --- a/docs/com/sovren/models/api/indexes/class-use/DeleteIndexResponse.html +++ b/docs/com/sovren/models/api/indexes/class-use/DeleteIndexResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.DeleteIndexResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/DeleteMultipleDocumentsResponse.html b/docs/com/sovren/models/api/indexes/class-use/DeleteMultipleDocumentsResponse.html index 276076fdf..b95d18899 100644 --- a/docs/com/sovren/models/api/indexes/class-use/DeleteMultipleDocumentsResponse.html +++ b/docs/com/sovren/models/api/indexes/class-use/DeleteMultipleDocumentsResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.DeleteMultipleDocumentsResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/GetAllIndexesResponse.html b/docs/com/sovren/models/api/indexes/class-use/GetAllIndexesResponse.html index bc839eec7..770ee6b3b 100644 --- a/docs/com/sovren/models/api/indexes/class-use/GetAllIndexesResponse.html +++ b/docs/com/sovren/models/api/indexes/class-use/GetAllIndexesResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.GetAllIndexesResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/GetIndexResponse.html b/docs/com/sovren/models/api/indexes/class-use/GetIndexResponse.html index 31f9ebe83..3ba19f7e0 100644 --- a/docs/com/sovren/models/api/indexes/class-use/GetIndexResponse.html +++ b/docs/com/sovren/models/api/indexes/class-use/GetIndexResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.GetIndexResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/GetJobResponse.html b/docs/com/sovren/models/api/indexes/class-use/GetJobResponse.html index 83e2a25de..c3a0c5fd3 100644 --- a/docs/com/sovren/models/api/indexes/class-use/GetJobResponse.html +++ b/docs/com/sovren/models/api/indexes/class-use/GetJobResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.GetJobResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/GetResumeResponse.html b/docs/com/sovren/models/api/indexes/class-use/GetResumeResponse.html index 73b3e8ceb..44f0d802e 100644 --- a/docs/com/sovren/models/api/indexes/class-use/GetResumeResponse.html +++ b/docs/com/sovren/models/api/indexes/class-use/GetResumeResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.GetResumeResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/IndexDocumentRequest.html b/docs/com/sovren/models/api/indexes/class-use/IndexDocumentRequest.html index 2eaa2f639..0cc412066 100644 --- a/docs/com/sovren/models/api/indexes/class-use/IndexDocumentRequest.html +++ b/docs/com/sovren/models/api/indexes/class-use/IndexDocumentRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.IndexDocumentRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/IndexDocumentResponse.html b/docs/com/sovren/models/api/indexes/class-use/IndexDocumentResponse.html index e63e8fbe1..59a5b4b0f 100644 --- a/docs/com/sovren/models/api/indexes/class-use/IndexDocumentResponse.html +++ b/docs/com/sovren/models/api/indexes/class-use/IndexDocumentResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.IndexDocumentResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/IndexJobInfo.html b/docs/com/sovren/models/api/indexes/class-use/IndexJobInfo.html index 474977fd5..bb60a2083 100644 --- a/docs/com/sovren/models/api/indexes/class-use/IndexJobInfo.html +++ b/docs/com/sovren/models/api/indexes/class-use/IndexJobInfo.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.IndexJobInfo (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/IndexJobRequest.html b/docs/com/sovren/models/api/indexes/class-use/IndexJobRequest.html index 88a5d07a2..1718e9c71 100644 --- a/docs/com/sovren/models/api/indexes/class-use/IndexJobRequest.html +++ b/docs/com/sovren/models/api/indexes/class-use/IndexJobRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.IndexJobRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/IndexMultipleDocumentInfo.html b/docs/com/sovren/models/api/indexes/class-use/IndexMultipleDocumentInfo.html index b6d311d1c..bb1486079 100644 --- a/docs/com/sovren/models/api/indexes/class-use/IndexMultipleDocumentInfo.html +++ b/docs/com/sovren/models/api/indexes/class-use/IndexMultipleDocumentInfo.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.IndexMultipleDocumentInfo (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/IndexMultipleDocumentsResponse.html b/docs/com/sovren/models/api/indexes/class-use/IndexMultipleDocumentsResponse.html index a73343816..1db9b84eb 100644 --- a/docs/com/sovren/models/api/indexes/class-use/IndexMultipleDocumentsResponse.html +++ b/docs/com/sovren/models/api/indexes/class-use/IndexMultipleDocumentsResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.IndexMultipleDocumentsResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/IndexMultipleDocumentsResponseValue.html b/docs/com/sovren/models/api/indexes/class-use/IndexMultipleDocumentsResponseValue.html index 8dca7b47a..c198e42ed 100644 --- a/docs/com/sovren/models/api/indexes/class-use/IndexMultipleDocumentsResponseValue.html +++ b/docs/com/sovren/models/api/indexes/class-use/IndexMultipleDocumentsResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.IndexMultipleDocumentsResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/IndexMultipleJobsRequest.html b/docs/com/sovren/models/api/indexes/class-use/IndexMultipleJobsRequest.html index 035952596..c1acae30d 100644 --- a/docs/com/sovren/models/api/indexes/class-use/IndexMultipleJobsRequest.html +++ b/docs/com/sovren/models/api/indexes/class-use/IndexMultipleJobsRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.IndexMultipleJobsRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/IndexMultipleResumesRequest.html b/docs/com/sovren/models/api/indexes/class-use/IndexMultipleResumesRequest.html index f3d534d1f..953c9f942 100644 --- a/docs/com/sovren/models/api/indexes/class-use/IndexMultipleResumesRequest.html +++ b/docs/com/sovren/models/api/indexes/class-use/IndexMultipleResumesRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.IndexMultipleResumesRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/IndexResumeInfo.html b/docs/com/sovren/models/api/indexes/class-use/IndexResumeInfo.html index 3f85fb0f1..9d168a942 100644 --- a/docs/com/sovren/models/api/indexes/class-use/IndexResumeInfo.html +++ b/docs/com/sovren/models/api/indexes/class-use/IndexResumeInfo.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.IndexResumeInfo (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/IndexResumeRequest.html b/docs/com/sovren/models/api/indexes/class-use/IndexResumeRequest.html index 9c177cae2..6e96235ad 100644 --- a/docs/com/sovren/models/api/indexes/class-use/IndexResumeRequest.html +++ b/docs/com/sovren/models/api/indexes/class-use/IndexResumeRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.IndexResumeRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/IndexSingleDocumentInfo.html b/docs/com/sovren/models/api/indexes/class-use/IndexSingleDocumentInfo.html index ed9868e2e..e8a3ce830 100644 --- a/docs/com/sovren/models/api/indexes/class-use/IndexSingleDocumentInfo.html +++ b/docs/com/sovren/models/api/indexes/class-use/IndexSingleDocumentInfo.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.IndexSingleDocumentInfo (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/IndexedDocumentInfo.html b/docs/com/sovren/models/api/indexes/class-use/IndexedDocumentInfo.html index b1d90e911..12ccb9308 100644 --- a/docs/com/sovren/models/api/indexes/class-use/IndexedDocumentInfo.html +++ b/docs/com/sovren/models/api/indexes/class-use/IndexedDocumentInfo.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.IndexedDocumentInfo (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/UpdateUserDefinedTagsRequest.html b/docs/com/sovren/models/api/indexes/class-use/UpdateUserDefinedTagsRequest.html index 90e7875b1..59814d412 100644 --- a/docs/com/sovren/models/api/indexes/class-use/UpdateUserDefinedTagsRequest.html +++ b/docs/com/sovren/models/api/indexes/class-use/UpdateUserDefinedTagsRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.UpdateUserDefinedTagsRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/UpdateUserDefinedTagsResponse.html b/docs/com/sovren/models/api/indexes/class-use/UpdateUserDefinedTagsResponse.html index c922ff666..c797003d8 100644 --- a/docs/com/sovren/models/api/indexes/class-use/UpdateUserDefinedTagsResponse.html +++ b/docs/com/sovren/models/api/indexes/class-use/UpdateUserDefinedTagsResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.UpdateUserDefinedTagsResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/class-use/UserDefinedTagsMethod.html b/docs/com/sovren/models/api/indexes/class-use/UserDefinedTagsMethod.html index 6cb0c6973..fb23c62b2 100644 --- a/docs/com/sovren/models/api/indexes/class-use/UserDefinedTagsMethod.html +++ b/docs/com/sovren/models/api/indexes/class-use/UserDefinedTagsMethod.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.indexes.UserDefinedTagsMethod (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/package-frame.html b/docs/com/sovren/models/api/indexes/package-frame.html index 9afb6a06c..f1cbe6b9b 100644 --- a/docs/com/sovren/models/api/indexes/package-frame.html +++ b/docs/com/sovren/models/api/indexes/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.indexes (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/package-summary.html b/docs/com/sovren/models/api/indexes/package-summary.html index b52105ed1..d57f17747 100644 --- a/docs/com/sovren/models/api/indexes/package-summary.html +++ b/docs/com/sovren/models/api/indexes/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.indexes (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/package-tree.html b/docs/com/sovren/models/api/indexes/package-tree.html index 085953a40..dd5ac701f 100644 --- a/docs/com/sovren/models/api/indexes/package-tree.html +++ b/docs/com/sovren/models/api/indexes/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.indexes Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/indexes/package-use.html b/docs/com/sovren/models/api/indexes/package-use.html index e3ce5351e..8f0cd7d4f 100644 --- a/docs/com/sovren/models/api/indexes/package-use.html +++ b/docs/com/sovren/models/api/indexes/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.models.api.indexes (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/BaseScoredResponseValue.html b/docs/com/sovren/models/api/matching/BaseScoredResponseValue.html index f281cc32e..e28ef3cd0 100644 --- a/docs/com/sovren/models/api/matching/BaseScoredResponseValue.html +++ b/docs/com/sovren/models/api/matching/BaseScoredResponseValue.html @@ -2,10 +2,10 @@ - + BaseScoredResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/BaseSearchMatchResponseValue.html b/docs/com/sovren/models/api/matching/BaseSearchMatchResponseValue.html index d50b709f2..c7338906f 100644 --- a/docs/com/sovren/models/api/matching/BaseSearchMatchResponseValue.html +++ b/docs/com/sovren/models/api/matching/BaseSearchMatchResponseValue.html @@ -2,10 +2,10 @@ - + BaseSearchMatchResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/CategoryWeights.html b/docs/com/sovren/models/api/matching/CategoryWeights.html index 728db07ea..8866c9942 100644 --- a/docs/com/sovren/models/api/matching/CategoryWeights.html +++ b/docs/com/sovren/models/api/matching/CategoryWeights.html @@ -2,10 +2,10 @@ - + CategoryWeights (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/MatchJobRequest.html b/docs/com/sovren/models/api/matching/MatchJobRequest.html index ce0ebc684..2c9aa0e06 100644 --- a/docs/com/sovren/models/api/matching/MatchJobRequest.html +++ b/docs/com/sovren/models/api/matching/MatchJobRequest.html @@ -2,10 +2,10 @@ - + MatchJobRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/MatchResponse.html b/docs/com/sovren/models/api/matching/MatchResponse.html index dfd636356..399ffa300 100644 --- a/docs/com/sovren/models/api/matching/MatchResponse.html +++ b/docs/com/sovren/models/api/matching/MatchResponse.html @@ -2,10 +2,10 @@ - + MatchResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/MatchResponseValue.html b/docs/com/sovren/models/api/matching/MatchResponseValue.html index f84a19ec0..6395dc55d 100644 --- a/docs/com/sovren/models/api/matching/MatchResponseValue.html +++ b/docs/com/sovren/models/api/matching/MatchResponseValue.html @@ -2,10 +2,10 @@ - + MatchResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/MatchResumeRequest.html b/docs/com/sovren/models/api/matching/MatchResumeRequest.html index d6e37903b..f19ad96bf 100644 --- a/docs/com/sovren/models/api/matching/MatchResumeRequest.html +++ b/docs/com/sovren/models/api/matching/MatchResumeRequest.html @@ -2,10 +2,10 @@ - + MatchResumeRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/SearchRequest.html b/docs/com/sovren/models/api/matching/SearchRequest.html index b738ecfa3..1f8819aa6 100644 --- a/docs/com/sovren/models/api/matching/SearchRequest.html +++ b/docs/com/sovren/models/api/matching/SearchRequest.html @@ -2,10 +2,10 @@ - + SearchRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/SearchResponse.html b/docs/com/sovren/models/api/matching/SearchResponse.html index b1263e7df..af68ccbc4 100644 --- a/docs/com/sovren/models/api/matching/SearchResponse.html +++ b/docs/com/sovren/models/api/matching/SearchResponse.html @@ -2,10 +2,10 @@ - + SearchResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/SearchResponseValue.html b/docs/com/sovren/models/api/matching/SearchResponseValue.html index c8e76e3c7..ddb297b30 100644 --- a/docs/com/sovren/models/api/matching/SearchResponseValue.html +++ b/docs/com/sovren/models/api/matching/SearchResponseValue.html @@ -2,10 +2,10 @@ - + SearchResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/class-use/BaseScoredResponseValue.html b/docs/com/sovren/models/api/matching/class-use/BaseScoredResponseValue.html index 0ec1f01f3..e0487ea0e 100644 --- a/docs/com/sovren/models/api/matching/class-use/BaseScoredResponseValue.html +++ b/docs/com/sovren/models/api/matching/class-use/BaseScoredResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.BaseScoredResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/class-use/BaseSearchMatchResponseValue.html b/docs/com/sovren/models/api/matching/class-use/BaseSearchMatchResponseValue.html index 5e69e6386..1f5e325a1 100644 --- a/docs/com/sovren/models/api/matching/class-use/BaseSearchMatchResponseValue.html +++ b/docs/com/sovren/models/api/matching/class-use/BaseSearchMatchResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.BaseSearchMatchResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/class-use/CategoryWeights.html b/docs/com/sovren/models/api/matching/class-use/CategoryWeights.html index 52a5dc0c6..cfac27e6c 100644 --- a/docs/com/sovren/models/api/matching/class-use/CategoryWeights.html +++ b/docs/com/sovren/models/api/matching/class-use/CategoryWeights.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.CategoryWeights (Sovren Java SDK 1.7.1 API) - + @@ -116,107 +116,107 @@

    Uses of -<TTarget extends IParsedDocWithId>
    GenerateUIResponse
    -SovrenUIClient.bimetricScore(ParsedJobWithId sourceJob, +<TTarget extends IParsedDocWithId>
    BimetricScoreResponse
    +SovrenClient.bimetricScore(ParsedJobWithId sourceJob, List<TTarget> targetDocuments, CategoryWeights preferredWeights, SearchMatchSettings settings) -
    Create a Matching UI session to score one or more target documents against a source job
    +
    Score one or more target documents against a source job
    -<TTarget extends IParsedDocWithId>
    BimetricScoreResponse
    -SovrenClient.bimetricScore(ParsedJobWithId sourceJob, +<TTarget extends IParsedDocWithId>
    GenerateUIResponse
    +SovrenUIClient.bimetricScore(ParsedJobWithId sourceJob, List<TTarget> targetDocuments, CategoryWeights preferredWeights, SearchMatchSettings settings) -
    Score one or more target documents against a source job
    +
    Create a Matching UI session to score one or more target documents against a source job
    -<TTarget extends IParsedDocWithId>
    GenerateUIResponse
    -SovrenUIClient.bimetricScore(ParsedResumeWithId sourceResume, +<TTarget extends IParsedDocWithId>
    BimetricScoreResponse
    +SovrenClient.bimetricScore(ParsedResumeWithId sourceResume, List<TTarget> targetDocuments, CategoryWeights preferredWeights, SearchMatchSettings settings) -
    Create a Matching UI session to score one or more target documents against a source resume
    +
    Score one or more target documents against a source resume
    -<TTarget extends IParsedDocWithId>
    BimetricScoreResponse
    -SovrenClient.bimetricScore(ParsedResumeWithId sourceResume, +<TTarget extends IParsedDocWithId>
    GenerateUIResponse
    +SovrenUIClient.bimetricScore(ParsedResumeWithId sourceResume, List<TTarget> targetDocuments, CategoryWeights preferredWeights, SearchMatchSettings settings) -
    Score one or more target documents against a source resume
    +
    Create a Matching UI session to score one or more target documents against a source resume
    -GenerateUIResponse -SovrenUIClient.match(ParsedJob job, +MatchResponse +SovrenClient.match(ParsedJob job, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Create a Matching UI session to find matches for a non-indexed job.
    +
    Find matches for a non-indexed job.
    -MatchResponse -SovrenClient.match(ParsedJob job, +GenerateUIResponse +SovrenUIClient.match(ParsedJob job, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Find matches for a non-indexed job.
    +
    Create a Matching UI session to find matches for a non-indexed job.
    -GenerateUIResponse -SovrenUIClient.match(ParsedResume resume, +MatchResponse +SovrenClient.match(ParsedResume resume, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Create a Matching UI session to find matches for a non-indexed resume.
    +
    Find matches for a non-indexed resume.
    -MatchResponse -SovrenClient.match(ParsedResume resume, +GenerateUIResponse +SovrenUIClient.match(ParsedResume resume, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Find matches for a non-indexed resume.
    +
    Create a Matching UI session to find matches for a non-indexed resume.
    -GenerateUIResponse -SovrenUIClient.match(String indexId, +MatchResponse +SovrenClient.match(String indexId, String documentId, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Create a Matching UI session to find matches for a resume or job that is already indexed
    +
    Find matches for a resume or job that is already indexed
    -MatchResponse -SovrenClient.match(String indexId, +GenerateUIResponse +SovrenUIClient.match(String indexId, String documentId, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Find matches for a resume or job that is already indexed
    +
    Create a Matching UI session to find matches for a resume or job that is already indexed
    diff --git a/docs/com/sovren/models/api/matching/class-use/MatchJobRequest.html b/docs/com/sovren/models/api/matching/class-use/MatchJobRequest.html index 989b219fe..a04c90b03 100644 --- a/docs/com/sovren/models/api/matching/class-use/MatchJobRequest.html +++ b/docs/com/sovren/models/api/matching/class-use/MatchJobRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.MatchJobRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/class-use/MatchResponse.html b/docs/com/sovren/models/api/matching/class-use/MatchResponse.html index 46b82319b..bb4c058bb 100644 --- a/docs/com/sovren/models/api/matching/class-use/MatchResponse.html +++ b/docs/com/sovren/models/api/matching/class-use/MatchResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.MatchResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/class-use/MatchResponseValue.html b/docs/com/sovren/models/api/matching/class-use/MatchResponseValue.html index 2b8ee3741..6ba0738f4 100644 --- a/docs/com/sovren/models/api/matching/class-use/MatchResponseValue.html +++ b/docs/com/sovren/models/api/matching/class-use/MatchResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.MatchResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/class-use/MatchResumeRequest.html b/docs/com/sovren/models/api/matching/class-use/MatchResumeRequest.html index 62c9b6915..9aaaeadd6 100644 --- a/docs/com/sovren/models/api/matching/class-use/MatchResumeRequest.html +++ b/docs/com/sovren/models/api/matching/class-use/MatchResumeRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.MatchResumeRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/class-use/SearchRequest.html b/docs/com/sovren/models/api/matching/class-use/SearchRequest.html index f1001d95c..d0bdad38f 100644 --- a/docs/com/sovren/models/api/matching/class-use/SearchRequest.html +++ b/docs/com/sovren/models/api/matching/class-use/SearchRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.SearchRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/class-use/SearchResponse.html b/docs/com/sovren/models/api/matching/class-use/SearchResponse.html index 784d72441..92f1c4fe9 100644 --- a/docs/com/sovren/models/api/matching/class-use/SearchResponse.html +++ b/docs/com/sovren/models/api/matching/class-use/SearchResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.SearchResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/class-use/SearchResponseValue.html b/docs/com/sovren/models/api/matching/class-use/SearchResponseValue.html index ec65addb7..52a80e433 100644 --- a/docs/com/sovren/models/api/matching/class-use/SearchResponseValue.html +++ b/docs/com/sovren/models/api/matching/class-use/SearchResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.SearchResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/package-frame.html b/docs/com/sovren/models/api/matching/package-frame.html index 7b9feda77..8d8cc3d92 100644 --- a/docs/com/sovren/models/api/matching/package-frame.html +++ b/docs/com/sovren/models/api/matching/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.matching (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/package-summary.html b/docs/com/sovren/models/api/matching/package-summary.html index d3091b467..80be097a1 100644 --- a/docs/com/sovren/models/api/matching/package-summary.html +++ b/docs/com/sovren/models/api/matching/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.matching (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/package-tree.html b/docs/com/sovren/models/api/matching/package-tree.html index 1ae4e44d1..df993d857 100644 --- a/docs/com/sovren/models/api/matching/package-tree.html +++ b/docs/com/sovren/models/api/matching/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.matching Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/package-use.html b/docs/com/sovren/models/api/matching/package-use.html index 6044a01bb..03f209cea 100644 --- a/docs/com/sovren/models/api/matching/package-use.html +++ b/docs/com/sovren/models/api/matching/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.models.api.matching (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/DistanceUnit.html b/docs/com/sovren/models/api/matching/request/DistanceUnit.html index d003d6d37..9be4631b3 100644 --- a/docs/com/sovren/models/api/matching/request/DistanceUnit.html +++ b/docs/com/sovren/models/api/matching/request/DistanceUnit.html @@ -2,10 +2,10 @@ - + DistanceUnit (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/FilterCriteria.html b/docs/com/sovren/models/api/matching/request/FilterCriteria.html index 4db1fa080..21181aa90 100644 --- a/docs/com/sovren/models/api/matching/request/FilterCriteria.html +++ b/docs/com/sovren/models/api/matching/request/FilterCriteria.html @@ -2,10 +2,10 @@ - + FilterCriteria (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/FilterLocation.html b/docs/com/sovren/models/api/matching/request/FilterLocation.html index 95b243a7d..768d340cd 100644 --- a/docs/com/sovren/models/api/matching/request/FilterLocation.html +++ b/docs/com/sovren/models/api/matching/request/FilterLocation.html @@ -2,10 +2,10 @@ - + FilterLocation (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/IntegerRange.html b/docs/com/sovren/models/api/matching/request/IntegerRange.html index e1c1498ff..39c095c8a 100644 --- a/docs/com/sovren/models/api/matching/request/IntegerRange.html +++ b/docs/com/sovren/models/api/matching/request/IntegerRange.html @@ -2,10 +2,10 @@ - + IntegerRange (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/JobTitleFilter.html b/docs/com/sovren/models/api/matching/request/JobTitleFilter.html index 3325d60be..11b14632e 100644 --- a/docs/com/sovren/models/api/matching/request/JobTitleFilter.html +++ b/docs/com/sovren/models/api/matching/request/JobTitleFilter.html @@ -2,10 +2,10 @@ - + JobTitleFilter (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/LocationCriteria.html b/docs/com/sovren/models/api/matching/request/LocationCriteria.html index b65b708c6..4de429942 100644 --- a/docs/com/sovren/models/api/matching/request/LocationCriteria.html +++ b/docs/com/sovren/models/api/matching/request/LocationCriteria.html @@ -2,10 +2,10 @@ - + LocationCriteria (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/MatchByDocumentIdOptions.html b/docs/com/sovren/models/api/matching/request/MatchByDocumentIdOptions.html index 8a635962b..855fc9488 100644 --- a/docs/com/sovren/models/api/matching/request/MatchByDocumentIdOptions.html +++ b/docs/com/sovren/models/api/matching/request/MatchByDocumentIdOptions.html @@ -2,10 +2,10 @@ - + MatchByDocumentIdOptions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/MatchRequest.html b/docs/com/sovren/models/api/matching/request/MatchRequest.html index b3205686c..6fd0aff16 100644 --- a/docs/com/sovren/models/api/matching/request/MatchRequest.html +++ b/docs/com/sovren/models/api/matching/request/MatchRequest.html @@ -2,10 +2,10 @@ - + MatchRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/PaginationSettings.html b/docs/com/sovren/models/api/matching/request/PaginationSettings.html index 1ea446a30..d23a0c235 100644 --- a/docs/com/sovren/models/api/matching/request/PaginationSettings.html +++ b/docs/com/sovren/models/api/matching/request/PaginationSettings.html @@ -2,10 +2,10 @@ - + PaginationSettings (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/RevisionDateRange.html b/docs/com/sovren/models/api/matching/request/RevisionDateRange.html index 9edc8cef0..44e323c91 100644 --- a/docs/com/sovren/models/api/matching/request/RevisionDateRange.html +++ b/docs/com/sovren/models/api/matching/request/RevisionDateRange.html @@ -2,10 +2,10 @@ - + RevisionDateRange (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/SearchMatchRequestBase.html b/docs/com/sovren/models/api/matching/request/SearchMatchRequestBase.html index d4c6d386e..96cba1cdd 100644 --- a/docs/com/sovren/models/api/matching/request/SearchMatchRequestBase.html +++ b/docs/com/sovren/models/api/matching/request/SearchMatchRequestBase.html @@ -2,10 +2,10 @@ - + SearchMatchRequestBase (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/SearchMatchSettings.html b/docs/com/sovren/models/api/matching/request/SearchMatchSettings.html index d79ca5774..185a99935 100644 --- a/docs/com/sovren/models/api/matching/request/SearchMatchSettings.html +++ b/docs/com/sovren/models/api/matching/request/SearchMatchSettings.html @@ -2,10 +2,10 @@ - + SearchMatchSettings (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/SkillExperienceLevel.html b/docs/com/sovren/models/api/matching/request/SkillExperienceLevel.html index 82e87e861..e0a78a2bc 100644 --- a/docs/com/sovren/models/api/matching/request/SkillExperienceLevel.html +++ b/docs/com/sovren/models/api/matching/request/SkillExperienceLevel.html @@ -2,10 +2,10 @@ - + SkillExperienceLevel (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/SkillFilter.html b/docs/com/sovren/models/api/matching/request/SkillFilter.html index 016c6854b..95168f1b4 100644 --- a/docs/com/sovren/models/api/matching/request/SkillFilter.html +++ b/docs/com/sovren/models/api/matching/request/SkillFilter.html @@ -2,10 +2,10 @@ - + SkillFilter (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/class-use/DistanceUnit.html b/docs/com/sovren/models/api/matching/request/class-use/DistanceUnit.html index 8c0e29dfd..95baa0d77 100644 --- a/docs/com/sovren/models/api/matching/request/class-use/DistanceUnit.html +++ b/docs/com/sovren/models/api/matching/request/class-use/DistanceUnit.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.request.DistanceUnit (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/class-use/FilterCriteria.html b/docs/com/sovren/models/api/matching/request/class-use/FilterCriteria.html index f4bbd24c5..ac596cc83 100644 --- a/docs/com/sovren/models/api/matching/request/class-use/FilterCriteria.html +++ b/docs/com/sovren/models/api/matching/request/class-use/FilterCriteria.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.request.FilterCriteria (Sovren Java SDK 1.7.1 API) - + @@ -108,89 +108,89 @@

    Uses of -GenerateUIResponse -SovrenUIClient.match(ParsedJob job, +MatchResponse +SovrenClient.match(ParsedJob job, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Create a Matching UI session to find matches for a non-indexed job.
    +
    Find matches for a non-indexed job.
    -MatchResponse -SovrenClient.match(ParsedJob job, +GenerateUIResponse +SovrenUIClient.match(ParsedJob job, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Find matches for a non-indexed job.
    +
    Create a Matching UI session to find matches for a non-indexed job.
    -GenerateUIResponse -SovrenUIClient.match(ParsedResume resume, +MatchResponse +SovrenClient.match(ParsedResume resume, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Create a Matching UI session to find matches for a non-indexed resume.
    +
    Find matches for a non-indexed resume.
    -MatchResponse -SovrenClient.match(ParsedResume resume, +GenerateUIResponse +SovrenUIClient.match(ParsedResume resume, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Find matches for a non-indexed resume.
    +
    Create a Matching UI session to find matches for a non-indexed resume.
    -GenerateUIResponse -SovrenUIClient.match(String indexId, +MatchResponse +SovrenClient.match(String indexId, String documentId, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Create a Matching UI session to find matches for a resume or job that is already indexed
    +
    Find matches for a resume or job that is already indexed
    -MatchResponse -SovrenClient.match(String indexId, +GenerateUIResponse +SovrenUIClient.match(String indexId, String documentId, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Find matches for a resume or job that is already indexed
    +
    Create a Matching UI session to find matches for a resume or job that is already indexed
    -GenerateUIResponse -SovrenUIClient.search(List<String> indexesToQuery, +SearchResponse +SovrenClient.search(List<String> indexesToQuery, FilterCriteria query, SearchMatchSettings settings, PaginationSettings pagination) -
    Create a Matching UI session to search for resumes or jobs that meet specific criteria
    +
    Search for resumes or jobs that meet specific criteria
    -SearchResponse -SovrenClient.search(List<String> indexesToQuery, +GenerateUIResponse +SovrenUIClient.search(List<String> indexesToQuery, FilterCriteria query, SearchMatchSettings settings, PaginationSettings pagination) -
    Search for resumes or jobs that meet specific criteria
    +
    Create a Matching UI session to search for resumes or jobs that meet specific criteria
    diff --git a/docs/com/sovren/models/api/matching/request/class-use/FilterLocation.html b/docs/com/sovren/models/api/matching/request/class-use/FilterLocation.html index b63fc0d7f..1f782df5c 100644 --- a/docs/com/sovren/models/api/matching/request/class-use/FilterLocation.html +++ b/docs/com/sovren/models/api/matching/request/class-use/FilterLocation.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.request.FilterLocation (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/class-use/IntegerRange.html b/docs/com/sovren/models/api/matching/request/class-use/IntegerRange.html index d6ef9c450..3b4d77876 100644 --- a/docs/com/sovren/models/api/matching/request/class-use/IntegerRange.html +++ b/docs/com/sovren/models/api/matching/request/class-use/IntegerRange.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.request.IntegerRange (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/class-use/JobTitleFilter.html b/docs/com/sovren/models/api/matching/request/class-use/JobTitleFilter.html index 866f288d3..46f548308 100644 --- a/docs/com/sovren/models/api/matching/request/class-use/JobTitleFilter.html +++ b/docs/com/sovren/models/api/matching/request/class-use/JobTitleFilter.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.request.JobTitleFilter (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/class-use/LocationCriteria.html b/docs/com/sovren/models/api/matching/request/class-use/LocationCriteria.html index a463b4ad3..205192d33 100644 --- a/docs/com/sovren/models/api/matching/request/class-use/LocationCriteria.html +++ b/docs/com/sovren/models/api/matching/request/class-use/LocationCriteria.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.request.LocationCriteria (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/class-use/MatchByDocumentIdOptions.html b/docs/com/sovren/models/api/matching/request/class-use/MatchByDocumentIdOptions.html index aca42134c..ce757a8a7 100644 --- a/docs/com/sovren/models/api/matching/request/class-use/MatchByDocumentIdOptions.html +++ b/docs/com/sovren/models/api/matching/request/class-use/MatchByDocumentIdOptions.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.request.MatchByDocumentIdOptions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/class-use/MatchRequest.html b/docs/com/sovren/models/api/matching/request/class-use/MatchRequest.html index 362429ae5..1292163c6 100644 --- a/docs/com/sovren/models/api/matching/request/class-use/MatchRequest.html +++ b/docs/com/sovren/models/api/matching/request/class-use/MatchRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.request.MatchRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/class-use/PaginationSettings.html b/docs/com/sovren/models/api/matching/request/class-use/PaginationSettings.html index 71c78c458..1e288f6c3 100644 --- a/docs/com/sovren/models/api/matching/request/class-use/PaginationSettings.html +++ b/docs/com/sovren/models/api/matching/request/class-use/PaginationSettings.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.request.PaginationSettings (Sovren Java SDK 1.7.1 API) - + @@ -108,21 +108,21 @@

    Uses of -GenerateUIResponse -SovrenUIClient.search(List<String> indexesToQuery, +SearchResponse +SovrenClient.search(List<String> indexesToQuery, FilterCriteria query, SearchMatchSettings settings, PaginationSettings pagination) -
    Create a Matching UI session to search for resumes or jobs that meet specific criteria
    +
    Search for resumes or jobs that meet specific criteria
    -SearchResponse -SovrenClient.search(List<String> indexesToQuery, +GenerateUIResponse +SovrenUIClient.search(List<String> indexesToQuery, FilterCriteria query, SearchMatchSettings settings, PaginationSettings pagination) -
    Search for resumes or jobs that meet specific criteria
    +
    Create a Matching UI session to search for resumes or jobs that meet specific criteria
    diff --git a/docs/com/sovren/models/api/matching/request/class-use/RevisionDateRange.html b/docs/com/sovren/models/api/matching/request/class-use/RevisionDateRange.html index c389fb54e..2a250d54e 100644 --- a/docs/com/sovren/models/api/matching/request/class-use/RevisionDateRange.html +++ b/docs/com/sovren/models/api/matching/request/class-use/RevisionDateRange.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.request.RevisionDateRange (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/class-use/SearchMatchRequestBase.html b/docs/com/sovren/models/api/matching/request/class-use/SearchMatchRequestBase.html index 52a838359..2ef3dc644 100644 --- a/docs/com/sovren/models/api/matching/request/class-use/SearchMatchRequestBase.html +++ b/docs/com/sovren/models/api/matching/request/class-use/SearchMatchRequestBase.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.request.SearchMatchRequestBase (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/class-use/SearchMatchSettings.html b/docs/com/sovren/models/api/matching/request/class-use/SearchMatchSettings.html index b16984146..05315d810 100644 --- a/docs/com/sovren/models/api/matching/request/class-use/SearchMatchSettings.html +++ b/docs/com/sovren/models/api/matching/request/class-use/SearchMatchSettings.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.request.SearchMatchSettings (Sovren Java SDK 1.7.1 API) - + @@ -112,125 +112,125 @@

    Uses of -<TTarget extends IParsedDocWithId>
    GenerateUIResponse
    -SovrenUIClient.bimetricScore(ParsedJobWithId sourceJob, +<TTarget extends IParsedDocWithId>
    BimetricScoreResponse
    +SovrenClient.bimetricScore(ParsedJobWithId sourceJob, List<TTarget> targetDocuments, CategoryWeights preferredWeights, SearchMatchSettings settings) -
    Create a Matching UI session to score one or more target documents against a source job
    +
    Score one or more target documents against a source job
    -<TTarget extends IParsedDocWithId>
    BimetricScoreResponse
    -SovrenClient.bimetricScore(ParsedJobWithId sourceJob, +<TTarget extends IParsedDocWithId>
    GenerateUIResponse
    +SovrenUIClient.bimetricScore(ParsedJobWithId sourceJob, List<TTarget> targetDocuments, CategoryWeights preferredWeights, SearchMatchSettings settings) -
    Score one or more target documents against a source job
    +
    Create a Matching UI session to score one or more target documents against a source job
    -<TTarget extends IParsedDocWithId>
    GenerateUIResponse
    -SovrenUIClient.bimetricScore(ParsedResumeWithId sourceResume, +<TTarget extends IParsedDocWithId>
    BimetricScoreResponse
    +SovrenClient.bimetricScore(ParsedResumeWithId sourceResume, List<TTarget> targetDocuments, CategoryWeights preferredWeights, SearchMatchSettings settings) -
    Create a Matching UI session to score one or more target documents against a source resume
    +
    Score one or more target documents against a source resume
    -<TTarget extends IParsedDocWithId>
    BimetricScoreResponse
    -SovrenClient.bimetricScore(ParsedResumeWithId sourceResume, +<TTarget extends IParsedDocWithId>
    GenerateUIResponse
    +SovrenUIClient.bimetricScore(ParsedResumeWithId sourceResume, List<TTarget> targetDocuments, CategoryWeights preferredWeights, SearchMatchSettings settings) -
    Score one or more target documents against a source resume
    +
    Create a Matching UI session to score one or more target documents against a source resume
    -GenerateUIResponse -SovrenUIClient.match(ParsedJob job, +MatchResponse +SovrenClient.match(ParsedJob job, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Create a Matching UI session to find matches for a non-indexed job.
    +
    Find matches for a non-indexed job.
    -MatchResponse -SovrenClient.match(ParsedJob job, +GenerateUIResponse +SovrenUIClient.match(ParsedJob job, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Find matches for a non-indexed job.
    +
    Create a Matching UI session to find matches for a non-indexed job.
    -GenerateUIResponse -SovrenUIClient.match(ParsedResume resume, +MatchResponse +SovrenClient.match(ParsedResume resume, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Create a Matching UI session to find matches for a non-indexed resume.
    +
    Find matches for a non-indexed resume.
    -MatchResponse -SovrenClient.match(ParsedResume resume, +GenerateUIResponse +SovrenUIClient.match(ParsedResume resume, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Find matches for a non-indexed resume.
    +
    Create a Matching UI session to find matches for a non-indexed resume.
    -GenerateUIResponse -SovrenUIClient.match(String indexId, +MatchResponse +SovrenClient.match(String indexId, String documentId, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Create a Matching UI session to find matches for a resume or job that is already indexed
    +
    Find matches for a resume or job that is already indexed
    -MatchResponse -SovrenClient.match(String indexId, +GenerateUIResponse +SovrenUIClient.match(String indexId, String documentId, List<String> indexesToQuery, CategoryWeights preferredWeights, FilterCriteria filters, SearchMatchSettings settings, int numResults) -
    Find matches for a resume or job that is already indexed
    +
    Create a Matching UI session to find matches for a resume or job that is already indexed
    -GenerateUIResponse -SovrenUIClient.search(List<String> indexesToQuery, +SearchResponse +SovrenClient.search(List<String> indexesToQuery, FilterCriteria query, SearchMatchSettings settings, PaginationSettings pagination) -
    Create a Matching UI session to search for resumes or jobs that meet specific criteria
    +
    Search for resumes or jobs that meet specific criteria
    -SearchResponse -SovrenClient.search(List<String> indexesToQuery, +GenerateUIResponse +SovrenUIClient.search(List<String> indexesToQuery, FilterCriteria query, SearchMatchSettings settings, PaginationSettings pagination) -
    Search for resumes or jobs that meet specific criteria
    +
    Create a Matching UI session to search for resumes or jobs that meet specific criteria
    diff --git a/docs/com/sovren/models/api/matching/request/class-use/SkillExperienceLevel.html b/docs/com/sovren/models/api/matching/request/class-use/SkillExperienceLevel.html index f5b5e34f1..7c7ad9bc5 100644 --- a/docs/com/sovren/models/api/matching/request/class-use/SkillExperienceLevel.html +++ b/docs/com/sovren/models/api/matching/request/class-use/SkillExperienceLevel.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.request.SkillExperienceLevel (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/class-use/SkillFilter.html b/docs/com/sovren/models/api/matching/request/class-use/SkillFilter.html index 4dee0c762..7afc123d9 100644 --- a/docs/com/sovren/models/api/matching/request/class-use/SkillFilter.html +++ b/docs/com/sovren/models/api/matching/request/class-use/SkillFilter.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.request.SkillFilter (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/package-frame.html b/docs/com/sovren/models/api/matching/request/package-frame.html index a29ff3ec6..5d83e0f09 100644 --- a/docs/com/sovren/models/api/matching/request/package-frame.html +++ b/docs/com/sovren/models/api/matching/request/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.matching.request (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/package-summary.html b/docs/com/sovren/models/api/matching/request/package-summary.html index bab07f1fa..7b9f677fb 100644 --- a/docs/com/sovren/models/api/matching/request/package-summary.html +++ b/docs/com/sovren/models/api/matching/request/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.matching.request (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/package-tree.html b/docs/com/sovren/models/api/matching/request/package-tree.html index b6a2c77a1..b622a838d 100644 --- a/docs/com/sovren/models/api/matching/request/package-tree.html +++ b/docs/com/sovren/models/api/matching/request/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.matching.request Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/request/package-use.html b/docs/com/sovren/models/api/matching/request/package-use.html index 5fd4a079e..38d7df0bf 100644 --- a/docs/com/sovren/models/api/matching/request/package-use.html +++ b/docs/com/sovren/models/api/matching/request/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.models.api.matching.request (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/CategoryScoreData.html b/docs/com/sovren/models/api/matching/response/CategoryScoreData.html index 8be62661e..2819b0b24 100644 --- a/docs/com/sovren/models/api/matching/response/CategoryScoreData.html +++ b/docs/com/sovren/models/api/matching/response/CategoryScoreData.html @@ -2,10 +2,10 @@ - + CategoryScoreData (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/CategoryScoreEvidence.html b/docs/com/sovren/models/api/matching/response/CategoryScoreEvidence.html index f7351afa7..3672421bd 100644 --- a/docs/com/sovren/models/api/matching/response/CategoryScoreEvidence.html +++ b/docs/com/sovren/models/api/matching/response/CategoryScoreEvidence.html @@ -2,10 +2,10 @@ - + CategoryScoreEvidence (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/DocumentTaxonomies.html b/docs/com/sovren/models/api/matching/response/DocumentTaxonomies.html index 348afec50..e33376246 100644 --- a/docs/com/sovren/models/api/matching/response/DocumentTaxonomies.html +++ b/docs/com/sovren/models/api/matching/response/DocumentTaxonomies.html @@ -2,10 +2,10 @@ - + DocumentTaxonomies (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/EducationScoreData.html b/docs/com/sovren/models/api/matching/response/EducationScoreData.html index d106fcfc0..c35038b81 100644 --- a/docs/com/sovren/models/api/matching/response/EducationScoreData.html +++ b/docs/com/sovren/models/api/matching/response/EducationScoreData.html @@ -2,10 +2,10 @@ - + EducationScoreData (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/EnrichedScoreData.html b/docs/com/sovren/models/api/matching/response/EnrichedScoreData.html index aba07d34a..eea70094e 100644 --- a/docs/com/sovren/models/api/matching/response/EnrichedScoreData.html +++ b/docs/com/sovren/models/api/matching/response/EnrichedScoreData.html @@ -2,10 +2,10 @@ - + EnrichedScoreData (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/FoundJobTitle.html b/docs/com/sovren/models/api/matching/response/FoundJobTitle.html index f7840ea86..c4fbd1aff 100644 --- a/docs/com/sovren/models/api/matching/response/FoundJobTitle.html +++ b/docs/com/sovren/models/api/matching/response/FoundJobTitle.html @@ -2,10 +2,10 @@ - + FoundJobTitle (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/FoundSkill.html b/docs/com/sovren/models/api/matching/response/FoundSkill.html index ad533a5aa..ad548e91b 100644 --- a/docs/com/sovren/models/api/matching/response/FoundSkill.html +++ b/docs/com/sovren/models/api/matching/response/FoundSkill.html @@ -2,10 +2,10 @@ - + FoundSkill (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/JobTitlesScoreData.html b/docs/com/sovren/models/api/matching/response/JobTitlesScoreData.html index 32d22a8a4..dc13451f5 100644 --- a/docs/com/sovren/models/api/matching/response/JobTitlesScoreData.html +++ b/docs/com/sovren/models/api/matching/response/JobTitlesScoreData.html @@ -2,10 +2,10 @@ - + JobTitlesScoreData (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/ManagementLevelScoreData.html b/docs/com/sovren/models/api/matching/response/ManagementLevelScoreData.html index 4cf8c0021..2031f2b2d 100644 --- a/docs/com/sovren/models/api/matching/response/ManagementLevelScoreData.html +++ b/docs/com/sovren/models/api/matching/response/ManagementLevelScoreData.html @@ -2,10 +2,10 @@ - + ManagementLevelScoreData (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/MatchResult.html b/docs/com/sovren/models/api/matching/response/MatchResult.html index 55a994d73..9e4279563 100644 --- a/docs/com/sovren/models/api/matching/response/MatchResult.html +++ b/docs/com/sovren/models/api/matching/response/MatchResult.html @@ -2,10 +2,10 @@ - + MatchResult (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/SearchResult.html b/docs/com/sovren/models/api/matching/response/SearchResult.html index a8e1cc0a1..871d8f1af 100644 --- a/docs/com/sovren/models/api/matching/response/SearchResult.html +++ b/docs/com/sovren/models/api/matching/response/SearchResult.html @@ -2,10 +2,10 @@ - + SearchResult (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/SimpleCategoryScoreData.html b/docs/com/sovren/models/api/matching/response/SimpleCategoryScoreData.html index 117e86a7a..fc9c8de0a 100644 --- a/docs/com/sovren/models/api/matching/response/SimpleCategoryScoreData.html +++ b/docs/com/sovren/models/api/matching/response/SimpleCategoryScoreData.html @@ -2,10 +2,10 @@ - + SimpleCategoryScoreData (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/SkillsScoreData.html b/docs/com/sovren/models/api/matching/response/SkillsScoreData.html index 0889fdab2..73428244b 100644 --- a/docs/com/sovren/models/api/matching/response/SkillsScoreData.html +++ b/docs/com/sovren/models/api/matching/response/SkillsScoreData.html @@ -2,10 +2,10 @@ - + SkillsScoreData (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/TaxonomiesScoreData.html b/docs/com/sovren/models/api/matching/response/TaxonomiesScoreData.html index 46920be1f..b4faf1500 100644 --- a/docs/com/sovren/models/api/matching/response/TaxonomiesScoreData.html +++ b/docs/com/sovren/models/api/matching/response/TaxonomiesScoreData.html @@ -2,10 +2,10 @@ - + TaxonomiesScoreData (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/TaxonomyEvidence.html b/docs/com/sovren/models/api/matching/response/TaxonomyEvidence.html index 4a826984b..e859d91a5 100644 --- a/docs/com/sovren/models/api/matching/response/TaxonomyEvidence.html +++ b/docs/com/sovren/models/api/matching/response/TaxonomyEvidence.html @@ -2,10 +2,10 @@ - + TaxonomyEvidence (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/TaxonomyInfo.html b/docs/com/sovren/models/api/matching/response/TaxonomyInfo.html index 2cc03fb04..60461fb28 100644 --- a/docs/com/sovren/models/api/matching/response/TaxonomyInfo.html +++ b/docs/com/sovren/models/api/matching/response/TaxonomyInfo.html @@ -2,10 +2,10 @@ - + TaxonomyInfo (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/class-use/CategoryScoreData.html b/docs/com/sovren/models/api/matching/response/class-use/CategoryScoreData.html index 9740d678f..ee459e16d 100644 --- a/docs/com/sovren/models/api/matching/response/class-use/CategoryScoreData.html +++ b/docs/com/sovren/models/api/matching/response/class-use/CategoryScoreData.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.response.CategoryScoreData (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/class-use/CategoryScoreEvidence.html b/docs/com/sovren/models/api/matching/response/class-use/CategoryScoreEvidence.html index 302b6fae2..fb8b4d7dd 100644 --- a/docs/com/sovren/models/api/matching/response/class-use/CategoryScoreEvidence.html +++ b/docs/com/sovren/models/api/matching/response/class-use/CategoryScoreEvidence.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.response.CategoryScoreEvidence (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/class-use/DocumentTaxonomies.html b/docs/com/sovren/models/api/matching/response/class-use/DocumentTaxonomies.html index a3018778b..4b463d519 100644 --- a/docs/com/sovren/models/api/matching/response/class-use/DocumentTaxonomies.html +++ b/docs/com/sovren/models/api/matching/response/class-use/DocumentTaxonomies.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.response.DocumentTaxonomies (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/class-use/EducationScoreData.html b/docs/com/sovren/models/api/matching/response/class-use/EducationScoreData.html index c67cbb97f..a594c1c76 100644 --- a/docs/com/sovren/models/api/matching/response/class-use/EducationScoreData.html +++ b/docs/com/sovren/models/api/matching/response/class-use/EducationScoreData.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.response.EducationScoreData (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/class-use/EnrichedScoreData.html b/docs/com/sovren/models/api/matching/response/class-use/EnrichedScoreData.html index 18110dcff..03ddc6e5e 100644 --- a/docs/com/sovren/models/api/matching/response/class-use/EnrichedScoreData.html +++ b/docs/com/sovren/models/api/matching/response/class-use/EnrichedScoreData.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.response.EnrichedScoreData (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/class-use/FoundJobTitle.html b/docs/com/sovren/models/api/matching/response/class-use/FoundJobTitle.html index fe605357c..b998ea77b 100644 --- a/docs/com/sovren/models/api/matching/response/class-use/FoundJobTitle.html +++ b/docs/com/sovren/models/api/matching/response/class-use/FoundJobTitle.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.response.FoundJobTitle (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/class-use/FoundSkill.html b/docs/com/sovren/models/api/matching/response/class-use/FoundSkill.html index 1f6e82fc8..5c1cf55a1 100644 --- a/docs/com/sovren/models/api/matching/response/class-use/FoundSkill.html +++ b/docs/com/sovren/models/api/matching/response/class-use/FoundSkill.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.response.FoundSkill (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/class-use/JobTitlesScoreData.html b/docs/com/sovren/models/api/matching/response/class-use/JobTitlesScoreData.html index 9036e0201..b0093471a 100644 --- a/docs/com/sovren/models/api/matching/response/class-use/JobTitlesScoreData.html +++ b/docs/com/sovren/models/api/matching/response/class-use/JobTitlesScoreData.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.response.JobTitlesScoreData (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/class-use/ManagementLevelScoreData.html b/docs/com/sovren/models/api/matching/response/class-use/ManagementLevelScoreData.html index 11950fc3f..32d7179fc 100644 --- a/docs/com/sovren/models/api/matching/response/class-use/ManagementLevelScoreData.html +++ b/docs/com/sovren/models/api/matching/response/class-use/ManagementLevelScoreData.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.response.ManagementLevelScoreData (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/class-use/MatchResult.html b/docs/com/sovren/models/api/matching/response/class-use/MatchResult.html index 4962719a6..cc2547313 100644 --- a/docs/com/sovren/models/api/matching/response/class-use/MatchResult.html +++ b/docs/com/sovren/models/api/matching/response/class-use/MatchResult.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.response.MatchResult (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/class-use/SearchResult.html b/docs/com/sovren/models/api/matching/response/class-use/SearchResult.html index 960636f52..7ba1a49ca 100644 --- a/docs/com/sovren/models/api/matching/response/class-use/SearchResult.html +++ b/docs/com/sovren/models/api/matching/response/class-use/SearchResult.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.response.SearchResult (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/class-use/SimpleCategoryScoreData.html b/docs/com/sovren/models/api/matching/response/class-use/SimpleCategoryScoreData.html index 9c10c8f2a..b9fbfc09c 100644 --- a/docs/com/sovren/models/api/matching/response/class-use/SimpleCategoryScoreData.html +++ b/docs/com/sovren/models/api/matching/response/class-use/SimpleCategoryScoreData.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.response.SimpleCategoryScoreData (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/class-use/SkillsScoreData.html b/docs/com/sovren/models/api/matching/response/class-use/SkillsScoreData.html index 92c3c6456..9dd8a7301 100644 --- a/docs/com/sovren/models/api/matching/response/class-use/SkillsScoreData.html +++ b/docs/com/sovren/models/api/matching/response/class-use/SkillsScoreData.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.response.SkillsScoreData (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/class-use/TaxonomiesScoreData.html b/docs/com/sovren/models/api/matching/response/class-use/TaxonomiesScoreData.html index adb5b4c0b..07b71fde1 100644 --- a/docs/com/sovren/models/api/matching/response/class-use/TaxonomiesScoreData.html +++ b/docs/com/sovren/models/api/matching/response/class-use/TaxonomiesScoreData.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.response.TaxonomiesScoreData (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/class-use/TaxonomyEvidence.html b/docs/com/sovren/models/api/matching/response/class-use/TaxonomyEvidence.html index c7e6d89da..a42cb4d51 100644 --- a/docs/com/sovren/models/api/matching/response/class-use/TaxonomyEvidence.html +++ b/docs/com/sovren/models/api/matching/response/class-use/TaxonomyEvidence.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.response.TaxonomyEvidence (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/class-use/TaxonomyInfo.html b/docs/com/sovren/models/api/matching/response/class-use/TaxonomyInfo.html index 78af13df1..ade081008 100644 --- a/docs/com/sovren/models/api/matching/response/class-use/TaxonomyInfo.html +++ b/docs/com/sovren/models/api/matching/response/class-use/TaxonomyInfo.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.response.TaxonomyInfo (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/package-frame.html b/docs/com/sovren/models/api/matching/response/package-frame.html index 747207a23..71100c246 100644 --- a/docs/com/sovren/models/api/matching/response/package-frame.html +++ b/docs/com/sovren/models/api/matching/response/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.matching.response (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/package-summary.html b/docs/com/sovren/models/api/matching/response/package-summary.html index ae078bede..997fae031 100644 --- a/docs/com/sovren/models/api/matching/response/package-summary.html +++ b/docs/com/sovren/models/api/matching/response/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.matching.response (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/package-tree.html b/docs/com/sovren/models/api/matching/response/package-tree.html index a81f1c544..080978f59 100644 --- a/docs/com/sovren/models/api/matching/response/package-tree.html +++ b/docs/com/sovren/models/api/matching/response/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.matching.response Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/response/package-use.html b/docs/com/sovren/models/api/matching/response/package-use.html index 413cdeba2..4de245e43 100644 --- a/docs/com/sovren/models/api/matching/response/package-use.html +++ b/docs/com/sovren/models/api/matching/response/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.models.api.matching.response (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/FilterToShow.html b/docs/com/sovren/models/api/matching/ui/FilterToShow.html index 8ab52a85b..ad2dddead 100644 --- a/docs/com/sovren/models/api/matching/ui/FilterToShow.html +++ b/docs/com/sovren/models/api/matching/ui/FilterToShow.html @@ -2,10 +2,10 @@ - + FilterToShow (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/GenerateUIResponse.html b/docs/com/sovren/models/api/matching/ui/GenerateUIResponse.html index f07e1f0f3..f469c17de 100644 --- a/docs/com/sovren/models/api/matching/ui/GenerateUIResponse.html +++ b/docs/com/sovren/models/api/matching/ui/GenerateUIResponse.html @@ -2,10 +2,10 @@ - + GenerateUIResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/Style.html b/docs/com/sovren/models/api/matching/ui/Style.html index 065d6e57d..5ff4bba8e 100644 --- a/docs/com/sovren/models/api/matching/ui/Style.html +++ b/docs/com/sovren/models/api/matching/ui/Style.html @@ -2,10 +2,10 @@ - + Style (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/UIOptions.html b/docs/com/sovren/models/api/matching/ui/UIOptions.html index aac3c0c54..a9d000895 100644 --- a/docs/com/sovren/models/api/matching/ui/UIOptions.html +++ b/docs/com/sovren/models/api/matching/ui/UIOptions.html @@ -2,10 +2,10 @@ - + UIOptions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/UserDefinedTagOption.html b/docs/com/sovren/models/api/matching/ui/UserDefinedTagOption.html index d85457bad..f8012260d 100644 --- a/docs/com/sovren/models/api/matching/ui/UserDefinedTagOption.html +++ b/docs/com/sovren/models/api/matching/ui/UserDefinedTagOption.html @@ -2,10 +2,10 @@ - + UserDefinedTagOption (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/UserDefinedTagsPicklist.html b/docs/com/sovren/models/api/matching/ui/UserDefinedTagsPicklist.html index 4b98f3a23..95cdac6db 100644 --- a/docs/com/sovren/models/api/matching/ui/UserDefinedTagsPicklist.html +++ b/docs/com/sovren/models/api/matching/ui/UserDefinedTagsPicklist.html @@ -2,10 +2,10 @@ - + UserDefinedTagsPicklist (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/class-use/FilterToShow.html b/docs/com/sovren/models/api/matching/ui/class-use/FilterToShow.html index 3c544fdd4..8d43efc3f 100644 --- a/docs/com/sovren/models/api/matching/ui/class-use/FilterToShow.html +++ b/docs/com/sovren/models/api/matching/ui/class-use/FilterToShow.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.ui.FilterToShow (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/class-use/GenerateUIResponse.html b/docs/com/sovren/models/api/matching/ui/class-use/GenerateUIResponse.html index c1e6c1bcc..81bc926e6 100644 --- a/docs/com/sovren/models/api/matching/ui/class-use/GenerateUIResponse.html +++ b/docs/com/sovren/models/api/matching/ui/class-use/GenerateUIResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.ui.GenerateUIResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/class-use/Style.html b/docs/com/sovren/models/api/matching/ui/class-use/Style.html index 71baa5853..a3eccd45b 100644 --- a/docs/com/sovren/models/api/matching/ui/class-use/Style.html +++ b/docs/com/sovren/models/api/matching/ui/class-use/Style.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.ui.Style (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/class-use/UIOptions.html b/docs/com/sovren/models/api/matching/ui/class-use/UIOptions.html index 55c331c81..3721ccff9 100644 --- a/docs/com/sovren/models/api/matching/ui/class-use/UIOptions.html +++ b/docs/com/sovren/models/api/matching/ui/class-use/UIOptions.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.ui.UIOptions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/class-use/UserDefinedTagOption.html b/docs/com/sovren/models/api/matching/ui/class-use/UserDefinedTagOption.html index 531a6b14f..da1033c2c 100644 --- a/docs/com/sovren/models/api/matching/ui/class-use/UserDefinedTagOption.html +++ b/docs/com/sovren/models/api/matching/ui/class-use/UserDefinedTagOption.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.ui.UserDefinedTagOption (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/class-use/UserDefinedTagsPicklist.html b/docs/com/sovren/models/api/matching/ui/class-use/UserDefinedTagsPicklist.html index 8f3e69599..1195efd1c 100644 --- a/docs/com/sovren/models/api/matching/ui/class-use/UserDefinedTagsPicklist.html +++ b/docs/com/sovren/models/api/matching/ui/class-use/UserDefinedTagsPicklist.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.ui.UserDefinedTagsPicklist (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/hooks/ClientSideHook.html b/docs/com/sovren/models/api/matching/ui/hooks/ClientSideHook.html index 30d3761aa..6af975009 100644 --- a/docs/com/sovren/models/api/matching/ui/hooks/ClientSideHook.html +++ b/docs/com/sovren/models/api/matching/ui/hooks/ClientSideHook.html @@ -2,10 +2,10 @@ - + ClientSideHook (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/hooks/JsAction.html b/docs/com/sovren/models/api/matching/ui/hooks/JsAction.html index 18bdd0e2b..b57cf4d2f 100644 --- a/docs/com/sovren/models/api/matching/ui/hooks/JsAction.html +++ b/docs/com/sovren/models/api/matching/ui/hooks/JsAction.html @@ -2,10 +2,10 @@ - + JsAction (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/hooks/ServerSideHook.html b/docs/com/sovren/models/api/matching/ui/hooks/ServerSideHook.html index 216dbda26..a626d6bba 100644 --- a/docs/com/sovren/models/api/matching/ui/hooks/ServerSideHook.html +++ b/docs/com/sovren/models/api/matching/ui/hooks/ServerSideHook.html @@ -2,10 +2,10 @@ - + ServerSideHook (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/hooks/SourcingHook.html b/docs/com/sovren/models/api/matching/ui/hooks/SourcingHook.html index f225446a8..3ca94c685 100644 --- a/docs/com/sovren/models/api/matching/ui/hooks/SourcingHook.html +++ b/docs/com/sovren/models/api/matching/ui/hooks/SourcingHook.html @@ -2,10 +2,10 @@ - + SourcingHook (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/hooks/UrlAction.html b/docs/com/sovren/models/api/matching/ui/hooks/UrlAction.html index 70390bcc3..05b88ff84 100644 --- a/docs/com/sovren/models/api/matching/ui/hooks/UrlAction.html +++ b/docs/com/sovren/models/api/matching/ui/hooks/UrlAction.html @@ -2,10 +2,10 @@ - + UrlAction (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/hooks/UserActionHook.html b/docs/com/sovren/models/api/matching/ui/hooks/UserActionHook.html index 885737348..0eee7ef0d 100644 --- a/docs/com/sovren/models/api/matching/ui/hooks/UserActionHook.html +++ b/docs/com/sovren/models/api/matching/ui/hooks/UserActionHook.html @@ -2,10 +2,10 @@ - + UserActionHook (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/hooks/UserActionHookCollection.html b/docs/com/sovren/models/api/matching/ui/hooks/UserActionHookCollection.html index c9d3f452e..97bb04880 100644 --- a/docs/com/sovren/models/api/matching/ui/hooks/UserActionHookCollection.html +++ b/docs/com/sovren/models/api/matching/ui/hooks/UserActionHookCollection.html @@ -2,10 +2,10 @@ - + UserActionHookCollection (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/hooks/class-use/ClientSideHook.html b/docs/com/sovren/models/api/matching/ui/hooks/class-use/ClientSideHook.html index 7fa527b39..737fc1b67 100644 --- a/docs/com/sovren/models/api/matching/ui/hooks/class-use/ClientSideHook.html +++ b/docs/com/sovren/models/api/matching/ui/hooks/class-use/ClientSideHook.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.ui.hooks.ClientSideHook (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/hooks/class-use/JsAction.html b/docs/com/sovren/models/api/matching/ui/hooks/class-use/JsAction.html index 475a48683..1aee60246 100644 --- a/docs/com/sovren/models/api/matching/ui/hooks/class-use/JsAction.html +++ b/docs/com/sovren/models/api/matching/ui/hooks/class-use/JsAction.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.ui.hooks.JsAction (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/hooks/class-use/ServerSideHook.html b/docs/com/sovren/models/api/matching/ui/hooks/class-use/ServerSideHook.html index a916a0e5f..dc79e7ab7 100644 --- a/docs/com/sovren/models/api/matching/ui/hooks/class-use/ServerSideHook.html +++ b/docs/com/sovren/models/api/matching/ui/hooks/class-use/ServerSideHook.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.ui.hooks.ServerSideHook (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/hooks/class-use/SourcingHook.html b/docs/com/sovren/models/api/matching/ui/hooks/class-use/SourcingHook.html index 96aa23f3a..9316f8be4 100644 --- a/docs/com/sovren/models/api/matching/ui/hooks/class-use/SourcingHook.html +++ b/docs/com/sovren/models/api/matching/ui/hooks/class-use/SourcingHook.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.ui.hooks.SourcingHook (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/hooks/class-use/UrlAction.html b/docs/com/sovren/models/api/matching/ui/hooks/class-use/UrlAction.html index b61af6266..52e99eb1d 100644 --- a/docs/com/sovren/models/api/matching/ui/hooks/class-use/UrlAction.html +++ b/docs/com/sovren/models/api/matching/ui/hooks/class-use/UrlAction.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.ui.hooks.UrlAction (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/hooks/class-use/UserActionHook.html b/docs/com/sovren/models/api/matching/ui/hooks/class-use/UserActionHook.html index bd7ddb976..cb3d59269 100644 --- a/docs/com/sovren/models/api/matching/ui/hooks/class-use/UserActionHook.html +++ b/docs/com/sovren/models/api/matching/ui/hooks/class-use/UserActionHook.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.ui.hooks.UserActionHook (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/hooks/class-use/UserActionHookCollection.html b/docs/com/sovren/models/api/matching/ui/hooks/class-use/UserActionHookCollection.html index 9ad8ebcbd..972d51952 100644 --- a/docs/com/sovren/models/api/matching/ui/hooks/class-use/UserActionHookCollection.html +++ b/docs/com/sovren/models/api/matching/ui/hooks/class-use/UserActionHookCollection.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.ui.hooks.UserActionHookCollection (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/hooks/package-frame.html b/docs/com/sovren/models/api/matching/ui/hooks/package-frame.html index f8ebaeee9..ed575b479 100644 --- a/docs/com/sovren/models/api/matching/ui/hooks/package-frame.html +++ b/docs/com/sovren/models/api/matching/ui/hooks/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.matching.ui.hooks (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/hooks/package-summary.html b/docs/com/sovren/models/api/matching/ui/hooks/package-summary.html index 780f1326e..8f259effe 100644 --- a/docs/com/sovren/models/api/matching/ui/hooks/package-summary.html +++ b/docs/com/sovren/models/api/matching/ui/hooks/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.matching.ui.hooks (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/hooks/package-tree.html b/docs/com/sovren/models/api/matching/ui/hooks/package-tree.html index b6e2ee606..447269d82 100644 --- a/docs/com/sovren/models/api/matching/ui/hooks/package-tree.html +++ b/docs/com/sovren/models/api/matching/ui/hooks/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.matching.ui.hooks Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/hooks/package-use.html b/docs/com/sovren/models/api/matching/ui/hooks/package-use.html index 105d9fd16..ccb38256c 100644 --- a/docs/com/sovren/models/api/matching/ui/hooks/package-use.html +++ b/docs/com/sovren/models/api/matching/ui/hooks/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.models.api.matching.ui.hooks (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/package-frame.html b/docs/com/sovren/models/api/matching/ui/package-frame.html index 30d5bfa15..656b5501d 100644 --- a/docs/com/sovren/models/api/matching/ui/package-frame.html +++ b/docs/com/sovren/models/api/matching/ui/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.matching.ui (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/package-summary.html b/docs/com/sovren/models/api/matching/ui/package-summary.html index 7ca3bbec1..c0423b669 100644 --- a/docs/com/sovren/models/api/matching/ui/package-summary.html +++ b/docs/com/sovren/models/api/matching/ui/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.matching.ui (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/package-tree.html b/docs/com/sovren/models/api/matching/ui/package-tree.html index e09c08baf..4f60875a0 100644 --- a/docs/com/sovren/models/api/matching/ui/package-tree.html +++ b/docs/com/sovren/models/api/matching/ui/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.matching.ui Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/package-use.html b/docs/com/sovren/models/api/matching/ui/package-use.html index b5d4e5420..1dc9431c3 100644 --- a/docs/com/sovren/models/api/matching/ui/package-use.html +++ b/docs/com/sovren/models/api/matching/ui/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.models.api.matching.ui (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/request/GenerateUIRequest.html b/docs/com/sovren/models/api/matching/ui/request/GenerateUIRequest.html index 9f553c55a..b7922f36f 100644 --- a/docs/com/sovren/models/api/matching/ui/request/GenerateUIRequest.html +++ b/docs/com/sovren/models/api/matching/ui/request/GenerateUIRequest.html @@ -2,10 +2,10 @@ - + GenerateUIRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/request/MatchUISettings.html b/docs/com/sovren/models/api/matching/ui/request/MatchUISettings.html index 7f6229cbd..53356425c 100644 --- a/docs/com/sovren/models/api/matching/ui/request/MatchUISettings.html +++ b/docs/com/sovren/models/api/matching/ui/request/MatchUISettings.html @@ -2,10 +2,10 @@ - + MatchUISettings (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/request/UIBimetricScoreJobRequest.html b/docs/com/sovren/models/api/matching/ui/request/UIBimetricScoreJobRequest.html index 1cf52351a..6f091ec04 100644 --- a/docs/com/sovren/models/api/matching/ui/request/UIBimetricScoreJobRequest.html +++ b/docs/com/sovren/models/api/matching/ui/request/UIBimetricScoreJobRequest.html @@ -2,10 +2,10 @@ - + UIBimetricScoreJobRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/request/UIBimetricScoreResumeRequest.html b/docs/com/sovren/models/api/matching/ui/request/UIBimetricScoreResumeRequest.html index dee235ed0..33298e395 100644 --- a/docs/com/sovren/models/api/matching/ui/request/UIBimetricScoreResumeRequest.html +++ b/docs/com/sovren/models/api/matching/ui/request/UIBimetricScoreResumeRequest.html @@ -2,10 +2,10 @@ - + UIBimetricScoreResumeRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/request/UIMatchByDocumentIdOptions.html b/docs/com/sovren/models/api/matching/ui/request/UIMatchByDocumentIdOptions.html index 094a7111f..3002ad56d 100644 --- a/docs/com/sovren/models/api/matching/ui/request/UIMatchByDocumentIdOptions.html +++ b/docs/com/sovren/models/api/matching/ui/request/UIMatchByDocumentIdOptions.html @@ -2,10 +2,10 @@ - + UIMatchByDocumentIdOptions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/request/UIMatchJobRequest.html b/docs/com/sovren/models/api/matching/ui/request/UIMatchJobRequest.html index 7cf359810..47df786ef 100644 --- a/docs/com/sovren/models/api/matching/ui/request/UIMatchJobRequest.html +++ b/docs/com/sovren/models/api/matching/ui/request/UIMatchJobRequest.html @@ -2,10 +2,10 @@ - + UIMatchJobRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/request/UIMatchResumeRequest.html b/docs/com/sovren/models/api/matching/ui/request/UIMatchResumeRequest.html index 5174c1632..99a4cd69f 100644 --- a/docs/com/sovren/models/api/matching/ui/request/UIMatchResumeRequest.html +++ b/docs/com/sovren/models/api/matching/ui/request/UIMatchResumeRequest.html @@ -2,10 +2,10 @@ - + UIMatchResumeRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/request/UISearchRequest.html b/docs/com/sovren/models/api/matching/ui/request/UISearchRequest.html index 7fbc3abac..98051d5e0 100644 --- a/docs/com/sovren/models/api/matching/ui/request/UISearchRequest.html +++ b/docs/com/sovren/models/api/matching/ui/request/UISearchRequest.html @@ -2,10 +2,10 @@ - + UISearchRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/request/class-use/GenerateUIRequest.html b/docs/com/sovren/models/api/matching/ui/request/class-use/GenerateUIRequest.html index 38f44fb19..41c31a764 100644 --- a/docs/com/sovren/models/api/matching/ui/request/class-use/GenerateUIRequest.html +++ b/docs/com/sovren/models/api/matching/ui/request/class-use/GenerateUIRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.ui.request.GenerateUIRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/request/class-use/MatchUISettings.html b/docs/com/sovren/models/api/matching/ui/request/class-use/MatchUISettings.html index a9d46e011..9f4751fd0 100644 --- a/docs/com/sovren/models/api/matching/ui/request/class-use/MatchUISettings.html +++ b/docs/com/sovren/models/api/matching/ui/request/class-use/MatchUISettings.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.ui.request.MatchUISettings (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/request/class-use/UIBimetricScoreJobRequest.html b/docs/com/sovren/models/api/matching/ui/request/class-use/UIBimetricScoreJobRequest.html index 786d64fe5..3936d57b4 100644 --- a/docs/com/sovren/models/api/matching/ui/request/class-use/UIBimetricScoreJobRequest.html +++ b/docs/com/sovren/models/api/matching/ui/request/class-use/UIBimetricScoreJobRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.ui.request.UIBimetricScoreJobRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/request/class-use/UIBimetricScoreResumeRequest.html b/docs/com/sovren/models/api/matching/ui/request/class-use/UIBimetricScoreResumeRequest.html index 53514f840..dc930ecef 100644 --- a/docs/com/sovren/models/api/matching/ui/request/class-use/UIBimetricScoreResumeRequest.html +++ b/docs/com/sovren/models/api/matching/ui/request/class-use/UIBimetricScoreResumeRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.ui.request.UIBimetricScoreResumeRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/request/class-use/UIMatchByDocumentIdOptions.html b/docs/com/sovren/models/api/matching/ui/request/class-use/UIMatchByDocumentIdOptions.html index 1c5be3cfd..1d0b62f4c 100644 --- a/docs/com/sovren/models/api/matching/ui/request/class-use/UIMatchByDocumentIdOptions.html +++ b/docs/com/sovren/models/api/matching/ui/request/class-use/UIMatchByDocumentIdOptions.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.ui.request.UIMatchByDocumentIdOptions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/request/class-use/UIMatchJobRequest.html b/docs/com/sovren/models/api/matching/ui/request/class-use/UIMatchJobRequest.html index 714b204fe..1756bfc49 100644 --- a/docs/com/sovren/models/api/matching/ui/request/class-use/UIMatchJobRequest.html +++ b/docs/com/sovren/models/api/matching/ui/request/class-use/UIMatchJobRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.ui.request.UIMatchJobRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/request/class-use/UIMatchResumeRequest.html b/docs/com/sovren/models/api/matching/ui/request/class-use/UIMatchResumeRequest.html index 12f4c7a56..40c8a531f 100644 --- a/docs/com/sovren/models/api/matching/ui/request/class-use/UIMatchResumeRequest.html +++ b/docs/com/sovren/models/api/matching/ui/request/class-use/UIMatchResumeRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.ui.request.UIMatchResumeRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/request/class-use/UISearchRequest.html b/docs/com/sovren/models/api/matching/ui/request/class-use/UISearchRequest.html index 5dce14c48..1d1e1cc45 100644 --- a/docs/com/sovren/models/api/matching/ui/request/class-use/UISearchRequest.html +++ b/docs/com/sovren/models/api/matching/ui/request/class-use/UISearchRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.matching.ui.request.UISearchRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/request/package-frame.html b/docs/com/sovren/models/api/matching/ui/request/package-frame.html index eaedf3ef5..2c67e72b2 100644 --- a/docs/com/sovren/models/api/matching/ui/request/package-frame.html +++ b/docs/com/sovren/models/api/matching/ui/request/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.matching.ui.request (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/request/package-summary.html b/docs/com/sovren/models/api/matching/ui/request/package-summary.html index 0c4c80a15..260848bf8 100644 --- a/docs/com/sovren/models/api/matching/ui/request/package-summary.html +++ b/docs/com/sovren/models/api/matching/ui/request/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.matching.ui.request (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/request/package-tree.html b/docs/com/sovren/models/api/matching/ui/request/package-tree.html index 64217a371..74ad4cfc1 100644 --- a/docs/com/sovren/models/api/matching/ui/request/package-tree.html +++ b/docs/com/sovren/models/api/matching/ui/request/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.matching.ui.request Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/matching/ui/request/package-use.html b/docs/com/sovren/models/api/matching/ui/request/package-use.html index 36a19e77f..222a2886c 100644 --- a/docs/com/sovren/models/api/matching/ui/request/package-use.html +++ b/docs/com/sovren/models/api/matching/ui/request/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.models.api.matching.ui.request (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/package-frame.html b/docs/com/sovren/models/api/package-frame.html index b6d2f0ea6..ec71db4f6 100644 --- a/docs/com/sovren/models/api/package-frame.html +++ b/docs/com/sovren/models/api/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.models.api (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/package-summary.html b/docs/com/sovren/models/api/package-summary.html index 6cd7c402a..d3bf05d48 100644 --- a/docs/com/sovren/models/api/package-summary.html +++ b/docs/com/sovren/models/api/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.models.api (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/package-tree.html b/docs/com/sovren/models/api/package-tree.html index baf080c0d..0947a6cdd 100644 --- a/docs/com/sovren/models/api/package-tree.html +++ b/docs/com/sovren/models/api/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.models.api Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/package-use.html b/docs/com/sovren/models/api/package-use.html index be2b8a04d..c20081bf3 100644 --- a/docs/com/sovren/models/api/package-use.html +++ b/docs/com/sovren/models/api/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.models.api (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/BaseParseResponseValue.html b/docs/com/sovren/models/api/parsing/BaseParseResponseValue.html index 690ecace8..1b611eefa 100644 --- a/docs/com/sovren/models/api/parsing/BaseParseResponseValue.html +++ b/docs/com/sovren/models/api/parsing/BaseParseResponseValue.html @@ -2,10 +2,10 @@ - + BaseParseResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/BasicParseOptions.html b/docs/com/sovren/models/api/parsing/BasicParseOptions.html index 401da2026..87a6acbcc 100644 --- a/docs/com/sovren/models/api/parsing/BasicParseOptions.html +++ b/docs/com/sovren/models/api/parsing/BasicParseOptions.html @@ -2,10 +2,10 @@ - + BasicParseOptions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/ConversionMetadata.html b/docs/com/sovren/models/api/parsing/ConversionMetadata.html index 37d4695d4..baf13212f 100644 --- a/docs/com/sovren/models/api/parsing/ConversionMetadata.html +++ b/docs/com/sovren/models/api/parsing/ConversionMetadata.html @@ -2,10 +2,10 @@ - + ConversionMetadata (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/Conversions.html b/docs/com/sovren/models/api/parsing/Conversions.html index 101731451..672fbe642 100644 --- a/docs/com/sovren/models/api/parsing/Conversions.html +++ b/docs/com/sovren/models/api/parsing/Conversions.html @@ -2,10 +2,10 @@ - + Conversions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/ParseJobResponse.html b/docs/com/sovren/models/api/parsing/ParseJobResponse.html index b3c1edce0..8067ce43d 100644 --- a/docs/com/sovren/models/api/parsing/ParseJobResponse.html +++ b/docs/com/sovren/models/api/parsing/ParseJobResponse.html @@ -2,10 +2,10 @@ - + ParseJobResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/ParseJobResponseValue.html b/docs/com/sovren/models/api/parsing/ParseJobResponseValue.html index 7d0be75f5..35ca4861b 100644 --- a/docs/com/sovren/models/api/parsing/ParseJobResponseValue.html +++ b/docs/com/sovren/models/api/parsing/ParseJobResponseValue.html @@ -2,10 +2,10 @@ - + ParseJobResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/ParseOptions.html b/docs/com/sovren/models/api/parsing/ParseOptions.html index 1dae1a0e2..a30efee9f 100644 --- a/docs/com/sovren/models/api/parsing/ParseOptions.html +++ b/docs/com/sovren/models/api/parsing/ParseOptions.html @@ -2,10 +2,10 @@ - + ParseOptions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/ParseRequest.html b/docs/com/sovren/models/api/parsing/ParseRequest.html index 158297891..fda16fc06 100644 --- a/docs/com/sovren/models/api/parsing/ParseRequest.html +++ b/docs/com/sovren/models/api/parsing/ParseRequest.html @@ -2,10 +2,10 @@ - + ParseRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/ParseRequestDetails.html b/docs/com/sovren/models/api/parsing/ParseRequestDetails.html index c056fac46..469cc6566 100644 --- a/docs/com/sovren/models/api/parsing/ParseRequestDetails.html +++ b/docs/com/sovren/models/api/parsing/ParseRequestDetails.html @@ -2,10 +2,10 @@ - + ParseRequestDetails (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/ParseResumeResponse.html b/docs/com/sovren/models/api/parsing/ParseResumeResponse.html index 55dd28cfb..7ac617c58 100644 --- a/docs/com/sovren/models/api/parsing/ParseResumeResponse.html +++ b/docs/com/sovren/models/api/parsing/ParseResumeResponse.html @@ -2,10 +2,10 @@ - + ParseResumeResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/ParseResumeResponseValue.html b/docs/com/sovren/models/api/parsing/ParseResumeResponseValue.html index 1fa862343..0a76d5445 100644 --- a/docs/com/sovren/models/api/parsing/ParseResumeResponseValue.html +++ b/docs/com/sovren/models/api/parsing/ParseResumeResponseValue.html @@ -2,10 +2,10 @@ - + ParseResumeResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/ParsingMetadata.html b/docs/com/sovren/models/api/parsing/ParsingMetadata.html index 53542031b..f5fff1d17 100644 --- a/docs/com/sovren/models/api/parsing/ParsingMetadata.html +++ b/docs/com/sovren/models/api/parsing/ParsingMetadata.html @@ -2,10 +2,10 @@ - + ParsingMetadata (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/ProfessionsSettings.html b/docs/com/sovren/models/api/parsing/ProfessionsSettings.html index bb145a229..46e9bfc1e 100644 --- a/docs/com/sovren/models/api/parsing/ProfessionsSettings.html +++ b/docs/com/sovren/models/api/parsing/ProfessionsSettings.html @@ -2,10 +2,10 @@ - + ProfessionsSettings (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/SkillsSettings.html b/docs/com/sovren/models/api/parsing/SkillsSettings.html index 9b6e288f5..76259cfcc 100644 --- a/docs/com/sovren/models/api/parsing/SkillsSettings.html +++ b/docs/com/sovren/models/api/parsing/SkillsSettings.html @@ -2,10 +2,10 @@ - + SkillsSettings (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/class-use/BaseParseResponseValue.html b/docs/com/sovren/models/api/parsing/class-use/BaseParseResponseValue.html index f32456756..3e25204bb 100644 --- a/docs/com/sovren/models/api/parsing/class-use/BaseParseResponseValue.html +++ b/docs/com/sovren/models/api/parsing/class-use/BaseParseResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.parsing.BaseParseResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/class-use/BasicParseOptions.html b/docs/com/sovren/models/api/parsing/class-use/BasicParseOptions.html index 9550e6fcf..cd2ace8da 100644 --- a/docs/com/sovren/models/api/parsing/class-use/BasicParseOptions.html +++ b/docs/com/sovren/models/api/parsing/class-use/BasicParseOptions.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.parsing.BasicParseOptions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/class-use/ConversionMetadata.html b/docs/com/sovren/models/api/parsing/class-use/ConversionMetadata.html index 1989ddefa..7538ff62f 100644 --- a/docs/com/sovren/models/api/parsing/class-use/ConversionMetadata.html +++ b/docs/com/sovren/models/api/parsing/class-use/ConversionMetadata.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.parsing.ConversionMetadata (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/class-use/Conversions.html b/docs/com/sovren/models/api/parsing/class-use/Conversions.html index 620f0c2a8..fe7f8375d 100644 --- a/docs/com/sovren/models/api/parsing/class-use/Conversions.html +++ b/docs/com/sovren/models/api/parsing/class-use/Conversions.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.parsing.Conversions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/class-use/ParseJobResponse.html b/docs/com/sovren/models/api/parsing/class-use/ParseJobResponse.html index e5c08ea3d..f10773595 100644 --- a/docs/com/sovren/models/api/parsing/class-use/ParseJobResponse.html +++ b/docs/com/sovren/models/api/parsing/class-use/ParseJobResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.parsing.ParseJobResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/class-use/ParseJobResponseValue.html b/docs/com/sovren/models/api/parsing/class-use/ParseJobResponseValue.html index 8b1152351..c13fd032d 100644 --- a/docs/com/sovren/models/api/parsing/class-use/ParseJobResponseValue.html +++ b/docs/com/sovren/models/api/parsing/class-use/ParseJobResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.parsing.ParseJobResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/class-use/ParseOptions.html b/docs/com/sovren/models/api/parsing/class-use/ParseOptions.html index 391607709..4abbe8e44 100644 --- a/docs/com/sovren/models/api/parsing/class-use/ParseOptions.html +++ b/docs/com/sovren/models/api/parsing/class-use/ParseOptions.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.parsing.ParseOptions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/class-use/ParseRequest.html b/docs/com/sovren/models/api/parsing/class-use/ParseRequest.html index b20e9c2a5..da6602271 100644 --- a/docs/com/sovren/models/api/parsing/class-use/ParseRequest.html +++ b/docs/com/sovren/models/api/parsing/class-use/ParseRequest.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.parsing.ParseRequest (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/class-use/ParseRequestDetails.html b/docs/com/sovren/models/api/parsing/class-use/ParseRequestDetails.html index 7ac2f578f..666274f16 100644 --- a/docs/com/sovren/models/api/parsing/class-use/ParseRequestDetails.html +++ b/docs/com/sovren/models/api/parsing/class-use/ParseRequestDetails.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.parsing.ParseRequestDetails (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/class-use/ParseResumeResponse.html b/docs/com/sovren/models/api/parsing/class-use/ParseResumeResponse.html index 05d8ade7c..628b9dbc7 100644 --- a/docs/com/sovren/models/api/parsing/class-use/ParseResumeResponse.html +++ b/docs/com/sovren/models/api/parsing/class-use/ParseResumeResponse.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.parsing.ParseResumeResponse (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/class-use/ParseResumeResponseValue.html b/docs/com/sovren/models/api/parsing/class-use/ParseResumeResponseValue.html index cbf4909f1..7b1b841d2 100644 --- a/docs/com/sovren/models/api/parsing/class-use/ParseResumeResponseValue.html +++ b/docs/com/sovren/models/api/parsing/class-use/ParseResumeResponseValue.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.parsing.ParseResumeResponseValue (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/class-use/ParsingMetadata.html b/docs/com/sovren/models/api/parsing/class-use/ParsingMetadata.html index b6b6be41f..c7ca8f81c 100644 --- a/docs/com/sovren/models/api/parsing/class-use/ParsingMetadata.html +++ b/docs/com/sovren/models/api/parsing/class-use/ParsingMetadata.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.parsing.ParsingMetadata (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/class-use/ProfessionsSettings.html b/docs/com/sovren/models/api/parsing/class-use/ProfessionsSettings.html index 3fa1c4876..404066d03 100644 --- a/docs/com/sovren/models/api/parsing/class-use/ProfessionsSettings.html +++ b/docs/com/sovren/models/api/parsing/class-use/ProfessionsSettings.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.parsing.ProfessionsSettings (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/class-use/SkillsSettings.html b/docs/com/sovren/models/api/parsing/class-use/SkillsSettings.html index 5ad5bc1ed..05d7a07a9 100644 --- a/docs/com/sovren/models/api/parsing/class-use/SkillsSettings.html +++ b/docs/com/sovren/models/api/parsing/class-use/SkillsSettings.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.api.parsing.SkillsSettings (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/package-frame.html b/docs/com/sovren/models/api/parsing/package-frame.html index d043718ff..10f2cd0db 100644 --- a/docs/com/sovren/models/api/parsing/package-frame.html +++ b/docs/com/sovren/models/api/parsing/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.parsing (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/package-summary.html b/docs/com/sovren/models/api/parsing/package-summary.html index 8e90b5b76..32f51c56b 100644 --- a/docs/com/sovren/models/api/parsing/package-summary.html +++ b/docs/com/sovren/models/api/parsing/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.parsing (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/package-tree.html b/docs/com/sovren/models/api/parsing/package-tree.html index 3b02a44a7..7959796f5 100644 --- a/docs/com/sovren/models/api/parsing/package-tree.html +++ b/docs/com/sovren/models/api/parsing/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.models.api.parsing Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/api/parsing/package-use.html b/docs/com/sovren/models/api/parsing/package-use.html index 047c8f640..b6461a125 100644 --- a/docs/com/sovren/models/api/parsing/package-use.html +++ b/docs/com/sovren/models/api/parsing/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.models.api.parsing (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/class-use/Document.html b/docs/com/sovren/models/class-use/Document.html index 9dc20d569..11a4526ea 100644 --- a/docs/com/sovren/models/class-use/Document.html +++ b/docs/com/sovren/models/class-use/Document.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.Document (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/class-use/GeoCoordinates.html b/docs/com/sovren/models/class-use/GeoCoordinates.html index ad0e8b840..f9c225e06 100644 --- a/docs/com/sovren/models/class-use/GeoCoordinates.html +++ b/docs/com/sovren/models/class-use/GeoCoordinates.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.GeoCoordinates (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/class-use/GeocodedCoordinates.html b/docs/com/sovren/models/class-use/GeocodedCoordinates.html index cf4ab04e2..175affd46 100644 --- a/docs/com/sovren/models/class-use/GeocodedCoordinates.html +++ b/docs/com/sovren/models/class-use/GeocodedCoordinates.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.GeocodedCoordinates (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/class-use/Location.html b/docs/com/sovren/models/class-use/Location.html index adab344bc..c3934f002 100644 --- a/docs/com/sovren/models/class-use/Location.html +++ b/docs/com/sovren/models/class-use/Location.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.Location (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/class-use/ParsedDocument.html b/docs/com/sovren/models/class-use/ParsedDocument.html index d4d0beb1c..c28de81f1 100644 --- a/docs/com/sovren/models/class-use/ParsedDocument.html +++ b/docs/com/sovren/models/class-use/ParsedDocument.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.ParsedDocument (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/class-use/ParsedDocumentMetadata.html b/docs/com/sovren/models/class-use/ParsedDocumentMetadata.html index c20c20d72..e46a6f870 100644 --- a/docs/com/sovren/models/class-use/ParsedDocumentMetadata.html +++ b/docs/com/sovren/models/class-use/ParsedDocumentMetadata.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.ParsedDocumentMetadata (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/class-use/SovrenDate.html b/docs/com/sovren/models/class-use/SovrenDate.html index 3ac9d1e98..91341df7a 100644 --- a/docs/com/sovren/models/class-use/SovrenDate.html +++ b/docs/com/sovren/models/class-use/SovrenDate.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.SovrenDate (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/class-use/SovrenPrimitive.html b/docs/com/sovren/models/class-use/SovrenPrimitive.html index 8a42cbd03..84e753921 100644 --- a/docs/com/sovren/models/class-use/SovrenPrimitive.html +++ b/docs/com/sovren/models/class-use/SovrenPrimitive.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.SovrenPrimitive (Sovren Java SDK 1.7.1 API) - + @@ -141,44 +141,80 @@

    Uses of SovrenPrimitive<java.time.LocalDate> +ApplicationDetails.ApplicationDeadline +
    Deadline to apply for the job
    + + + +SovrenPrimitive<java.time.LocalDate> ParsedJob.EndDate
    The end date for the job, if listed.
    - + SovrenPrimitive<Integer> ParsedJob.HighestManagementScore
    The management score.
    + +SovrenPrimitive<Integer> +PayRange.Maximum +
    The normalized maximum yearly salary
    + + SovrenPrimitive<Integer> +ParsedJob.MaximumWorkingHours +
    The maximum number of working hours per week
    + + + +SovrenPrimitive<Integer> ParsedJob.MaximumYears
    The maximum years experience for the job, if listed.
    - + SovrenPrimitive<Integer> ParsedJob.MaximumYearsManagement
    The maximum years of management experience, if listed.
    + +SovrenPrimitive<Integer> +PayRange.Minimum +
    The normalized minimum yearly salary
    + + SovrenPrimitive<Integer> +ParsedJob.MinimumWorkingHours +
    The minimum number of working hours per week
    + + + +SovrenPrimitive<Integer> ParsedJob.MinimumYears
    The minimum years experience for the job, if listed.
    - + SovrenPrimitive<Integer> ParsedJob.MinimumYearsManagement
    The minimum years of management experience, if listed.
    + +SovrenPrimitive<java.time.LocalDate> +ApplicationDetails.PostedDate +
    Date the job was posted
    + + SovrenPrimitive<java.time.LocalDate> ParsedJob.StartDate -
    The start date for the job, if listed.
    +
    The start date of the job.
    @@ -249,13 +285,13 @@

    Uses of SovrenPrimitive<java.time.LocalDate> -ResumeRawSkill.LastUsed +ResumeNormalizedSkill.LastUsed
    Describes the date the candidate last used the skill (derived from position dates)
    SovrenPrimitive<java.time.LocalDate> -ResumeNormalizedSkill.LastUsed +ResumeRawSkill.LastUsed
    Describes the date the candidate last used the skill (derived from position dates)
    @@ -267,13 +303,13 @@

    Uses of SovrenPrimitive<Integer> -ResumeRawSkill.MonthsExperience +ResumeNormalizedSkill.MonthsExperience
    Describes the amount of experience a candidate has with this skill
    SovrenPrimitive<Integer> -ResumeNormalizedSkill.MonthsExperience +ResumeRawSkill.MonthsExperience
    Describes the amount of experience a candidate has with this skill
    diff --git a/docs/com/sovren/models/dataenrichment/BasicProfession.html b/docs/com/sovren/models/dataenrichment/BasicProfession.html index 171986dbf..054fdf83a 100644 --- a/docs/com/sovren/models/dataenrichment/BasicProfession.html +++ b/docs/com/sovren/models/dataenrichment/BasicProfession.html @@ -2,10 +2,10 @@ - + BasicProfession (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/ExtractedSkill.html b/docs/com/sovren/models/dataenrichment/ExtractedSkill.html index 38241314b..2988ffacc 100644 --- a/docs/com/sovren/models/dataenrichment/ExtractedSkill.html +++ b/docs/com/sovren/models/dataenrichment/ExtractedSkill.html @@ -2,10 +2,10 @@ - + ExtractedSkill (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/LangDescription.html b/docs/com/sovren/models/dataenrichment/LangDescription.html index 005e6a4d9..b68ab15ce 100644 --- a/docs/com/sovren/models/dataenrichment/LangDescription.html +++ b/docs/com/sovren/models/dataenrichment/LangDescription.html @@ -2,10 +2,10 @@ - + LangDescription (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/NormalizedProfession.html b/docs/com/sovren/models/dataenrichment/NormalizedProfession.html index 3b1c55fc6..3da9695e8 100644 --- a/docs/com/sovren/models/dataenrichment/NormalizedProfession.html +++ b/docs/com/sovren/models/dataenrichment/NormalizedProfession.html @@ -2,10 +2,10 @@ - + NormalizedProfession (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/NormalizedSkill.html b/docs/com/sovren/models/dataenrichment/NormalizedSkill.html index 15fbd0140..f01ff136f 100644 --- a/docs/com/sovren/models/dataenrichment/NormalizedSkill.html +++ b/docs/com/sovren/models/dataenrichment/NormalizedSkill.html @@ -2,10 +2,10 @@ - + NormalizedSkill (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/Profession.html b/docs/com/sovren/models/dataenrichment/Profession.html index 2c40c843a..4e0f9e14b 100644 --- a/docs/com/sovren/models/dataenrichment/Profession.html +++ b/docs/com/sovren/models/dataenrichment/Profession.html @@ -2,10 +2,10 @@ - + Profession (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/ProfessionClassification.html b/docs/com/sovren/models/dataenrichment/ProfessionClassification.html index 1174b0087..a8fe3baf1 100644 --- a/docs/com/sovren/models/dataenrichment/ProfessionClassification.html +++ b/docs/com/sovren/models/dataenrichment/ProfessionClassification.html @@ -2,10 +2,10 @@ - + ProfessionClassification (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/ProfessionMultipleDescriptions.html b/docs/com/sovren/models/dataenrichment/ProfessionMultipleDescriptions.html index 935ef5b5e..714baee57 100644 --- a/docs/com/sovren/models/dataenrichment/ProfessionMultipleDescriptions.html +++ b/docs/com/sovren/models/dataenrichment/ProfessionMultipleDescriptions.html @@ -2,10 +2,10 @@ - + ProfessionMultipleDescriptions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/Skill.html b/docs/com/sovren/models/dataenrichment/Skill.html index 45326d6c4..e5e91b1e6 100644 --- a/docs/com/sovren/models/dataenrichment/Skill.html +++ b/docs/com/sovren/models/dataenrichment/Skill.html @@ -2,10 +2,10 @@ - + Skill (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/SkillAndConfidence.html b/docs/com/sovren/models/dataenrichment/SkillAndConfidence.html index aafa37ad4..8499aa913 100644 --- a/docs/com/sovren/models/dataenrichment/SkillAndConfidence.html +++ b/docs/com/sovren/models/dataenrichment/SkillAndConfidence.html @@ -2,10 +2,10 @@ - + SkillAndConfidence (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/SkillMatch.html b/docs/com/sovren/models/dataenrichment/SkillMatch.html index cbce3a543..f69b04be3 100644 --- a/docs/com/sovren/models/dataenrichment/SkillMatch.html +++ b/docs/com/sovren/models/dataenrichment/SkillMatch.html @@ -2,10 +2,10 @@ - + SkillMatch (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/SkillMultipleDescriptions.html b/docs/com/sovren/models/dataenrichment/SkillMultipleDescriptions.html index 6ed87475a..cbd0ea3d3 100644 --- a/docs/com/sovren/models/dataenrichment/SkillMultipleDescriptions.html +++ b/docs/com/sovren/models/dataenrichment/SkillMultipleDescriptions.html @@ -2,10 +2,10 @@ - + SkillMultipleDescriptions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/Taxonomy.html b/docs/com/sovren/models/dataenrichment/Taxonomy.html index ba212431b..b559daf06 100644 --- a/docs/com/sovren/models/dataenrichment/Taxonomy.html +++ b/docs/com/sovren/models/dataenrichment/Taxonomy.html @@ -2,10 +2,10 @@ - + Taxonomy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/TaxonomyMetadata.html b/docs/com/sovren/models/dataenrichment/TaxonomyMetadata.html index 17b0490a0..272584375 100644 --- a/docs/com/sovren/models/dataenrichment/TaxonomyMetadata.html +++ b/docs/com/sovren/models/dataenrichment/TaxonomyMetadata.html @@ -2,10 +2,10 @@ - + TaxonomyMetadata (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/VersionedProfessionClassification.html b/docs/com/sovren/models/dataenrichment/VersionedProfessionClassification.html index 3f46e0d70..14ce0ea6d 100644 --- a/docs/com/sovren/models/dataenrichment/VersionedProfessionClassification.html +++ b/docs/com/sovren/models/dataenrichment/VersionedProfessionClassification.html @@ -2,10 +2,10 @@ - + VersionedProfessionClassification (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/class-use/BasicProfession.html b/docs/com/sovren/models/dataenrichment/class-use/BasicProfession.html index f767b6ba6..49d5ea267 100644 --- a/docs/com/sovren/models/dataenrichment/class-use/BasicProfession.html +++ b/docs/com/sovren/models/dataenrichment/class-use/BasicProfession.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.dataenrichment.BasicProfession (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/class-use/ExtractedSkill.html b/docs/com/sovren/models/dataenrichment/class-use/ExtractedSkill.html index d04a1c636..714781df4 100644 --- a/docs/com/sovren/models/dataenrichment/class-use/ExtractedSkill.html +++ b/docs/com/sovren/models/dataenrichment/class-use/ExtractedSkill.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.dataenrichment.ExtractedSkill (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/class-use/LangDescription.html b/docs/com/sovren/models/dataenrichment/class-use/LangDescription.html index db5d7dd52..b13ff5408 100644 --- a/docs/com/sovren/models/dataenrichment/class-use/LangDescription.html +++ b/docs/com/sovren/models/dataenrichment/class-use/LangDescription.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.dataenrichment.LangDescription (Sovren Java SDK 1.7.1 API) - + @@ -105,13 +105,13 @@

    Uses of List<LangDescription> -ProfessionMultipleDescriptions.Descriptions +SkillMultipleDescriptions.Descriptions
    A list of descriptions of the skill in all supported/requested languages.
    List<LangDescription> -SkillMultipleDescriptions.Descriptions +ProfessionMultipleDescriptions.Descriptions
    A list of descriptions of the skill in all supported/requested languages.
    diff --git a/docs/com/sovren/models/dataenrichment/class-use/NormalizedProfession.html b/docs/com/sovren/models/dataenrichment/class-use/NormalizedProfession.html index 0b4fbd477..aa2e159f4 100644 --- a/docs/com/sovren/models/dataenrichment/class-use/NormalizedProfession.html +++ b/docs/com/sovren/models/dataenrichment/class-use/NormalizedProfession.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.dataenrichment.NormalizedProfession (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/class-use/NormalizedSkill.html b/docs/com/sovren/models/dataenrichment/class-use/NormalizedSkill.html index 373f59774..3aa673597 100644 --- a/docs/com/sovren/models/dataenrichment/class-use/NormalizedSkill.html +++ b/docs/com/sovren/models/dataenrichment/class-use/NormalizedSkill.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.dataenrichment.NormalizedSkill (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/class-use/Profession.html b/docs/com/sovren/models/dataenrichment/class-use/Profession.html index 1a2721390..7dcd41fa0 100644 --- a/docs/com/sovren/models/dataenrichment/class-use/Profession.html +++ b/docs/com/sovren/models/dataenrichment/class-use/Profession.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.dataenrichment.Profession (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/class-use/ProfessionClassification.html b/docs/com/sovren/models/dataenrichment/class-use/ProfessionClassification.html index 35f9e77de..4018da5cc 100644 --- a/docs/com/sovren/models/dataenrichment/class-use/ProfessionClassification.html +++ b/docs/com/sovren/models/dataenrichment/class-use/ProfessionClassification.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.dataenrichment.ProfessionClassification (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/class-use/ProfessionMultipleDescriptions.html b/docs/com/sovren/models/dataenrichment/class-use/ProfessionMultipleDescriptions.html index 722e89480..dd931dcb4 100644 --- a/docs/com/sovren/models/dataenrichment/class-use/ProfessionMultipleDescriptions.html +++ b/docs/com/sovren/models/dataenrichment/class-use/ProfessionMultipleDescriptions.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.dataenrichment.ProfessionMultipleDescriptions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/class-use/Skill.html b/docs/com/sovren/models/dataenrichment/class-use/Skill.html index d5c68f561..370257b1f 100644 --- a/docs/com/sovren/models/dataenrichment/class-use/Skill.html +++ b/docs/com/sovren/models/dataenrichment/class-use/Skill.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.dataenrichment.Skill (Sovren Java SDK 1.7.1 API) - + @@ -109,14 +109,14 @@

    Uses of List<Skill> -LookupSkillCodesResponseValue.Skills -
    List of skills in from the skills taxonomy.
    +AutocompleteSkillsResponseValue.Skills +
    A list of skills based on the given Prefix.
    List<Skill> -AutocompleteSkillsResponseValue.Skills -
    A list of skills based on the given Prefix.
    +LookupSkillCodesResponseValue.Skills +
    List of skills in from the skills taxonomy.
    diff --git a/docs/com/sovren/models/dataenrichment/class-use/SkillAndConfidence.html b/docs/com/sovren/models/dataenrichment/class-use/SkillAndConfidence.html index 88a96bc37..4d7307fa9 100644 --- a/docs/com/sovren/models/dataenrichment/class-use/SkillAndConfidence.html +++ b/docs/com/sovren/models/dataenrichment/class-use/SkillAndConfidence.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.dataenrichment.SkillAndConfidence (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/class-use/SkillMatch.html b/docs/com/sovren/models/dataenrichment/class-use/SkillMatch.html index ee2d20877..97345061f 100644 --- a/docs/com/sovren/models/dataenrichment/class-use/SkillMatch.html +++ b/docs/com/sovren/models/dataenrichment/class-use/SkillMatch.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.dataenrichment.SkillMatch (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/class-use/SkillMultipleDescriptions.html b/docs/com/sovren/models/dataenrichment/class-use/SkillMultipleDescriptions.html index 914cf60fd..a1b773cdc 100644 --- a/docs/com/sovren/models/dataenrichment/class-use/SkillMultipleDescriptions.html +++ b/docs/com/sovren/models/dataenrichment/class-use/SkillMultipleDescriptions.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.dataenrichment.SkillMultipleDescriptions (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/class-use/Taxonomy.html b/docs/com/sovren/models/dataenrichment/class-use/Taxonomy.html index 22ceefdf4..7ae9b1f99 100644 --- a/docs/com/sovren/models/dataenrichment/class-use/Taxonomy.html +++ b/docs/com/sovren/models/dataenrichment/class-use/Taxonomy.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.dataenrichment.Taxonomy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/class-use/TaxonomyMetadata.html b/docs/com/sovren/models/dataenrichment/class-use/TaxonomyMetadata.html index b9c87a767..542d99da3 100644 --- a/docs/com/sovren/models/dataenrichment/class-use/TaxonomyMetadata.html +++ b/docs/com/sovren/models/dataenrichment/class-use/TaxonomyMetadata.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.dataenrichment.TaxonomyMetadata (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/class-use/VersionedProfessionClassification.html b/docs/com/sovren/models/dataenrichment/class-use/VersionedProfessionClassification.html index 93473230a..0f31f2d23 100644 --- a/docs/com/sovren/models/dataenrichment/class-use/VersionedProfessionClassification.html +++ b/docs/com/sovren/models/dataenrichment/class-use/VersionedProfessionClassification.html @@ -2,10 +2,10 @@ - + Uses of Class com.sovren.models.dataenrichment.VersionedProfessionClassification (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/package-frame.html b/docs/com/sovren/models/dataenrichment/package-frame.html index ff09296e7..4934fd632 100644 --- a/docs/com/sovren/models/dataenrichment/package-frame.html +++ b/docs/com/sovren/models/dataenrichment/package-frame.html @@ -2,10 +2,10 @@ - + com.sovren.models.dataenrichment (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/package-summary.html b/docs/com/sovren/models/dataenrichment/package-summary.html index e71b02fe2..5bd5e4e4f 100644 --- a/docs/com/sovren/models/dataenrichment/package-summary.html +++ b/docs/com/sovren/models/dataenrichment/package-summary.html @@ -2,10 +2,10 @@ - + com.sovren.models.dataenrichment (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/package-tree.html b/docs/com/sovren/models/dataenrichment/package-tree.html index d82ec218f..d7c20ab04 100644 --- a/docs/com/sovren/models/dataenrichment/package-tree.html +++ b/docs/com/sovren/models/dataenrichment/package-tree.html @@ -2,10 +2,10 @@ - + com.sovren.models.dataenrichment Class Hierarchy (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/dataenrichment/package-use.html b/docs/com/sovren/models/dataenrichment/package-use.html index 8653f5332..72e9ccdc3 100644 --- a/docs/com/sovren/models/dataenrichment/package-use.html +++ b/docs/com/sovren/models/dataenrichment/package-use.html @@ -2,10 +2,10 @@ - + Uses of Package com.sovren.models.dataenrichment (Sovren Java SDK 1.7.1 API) - + diff --git a/docs/com/sovren/models/job/ApplicationDetails.html b/docs/com/sovren/models/job/ApplicationDetails.html new file mode 100644 index 000000000..158632ad0 --- /dev/null +++ b/docs/com/sovren/models/job/ApplicationDetails.html @@ -0,0 +1,391 @@ + + + + + + +ApplicationDetails (Sovren Java SDK 1.7.1 API) + + + + + + + + + + + + +
    +
    com.sovren.models.job
    +

    Class ApplicationDetails

    +
    +
    + +
    +
      +
    • +
      +
      +
      public class ApplicationDetails
      +extends Object
      +
      An object containing details about the application process
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          ApplicationDescription

          +
          public String ApplicationDescription
          +
          Full text description of the application process
          +
        • +
        + + + +
          +
        • +

          ContactPerson

          +
          public String ContactPerson
          +
          Full name of the main contact person for the application
          +
        • +
        + + + +
          +
        • +

          ContactPhone

          +
          public String ContactPhone
          +
          Normalized phone of the organization with international calling prefix. Can contain multiple values (concatenated by comma)
          +
        • +
        + + + +
          +
        • +

          ContactEmail

          +
          public String ContactEmail
          +
          Displayable email of the organization. Can contain multiple values (concatenated by comma)
          +
        • +
        + + + +
          +
        • +

          Website

          +
          public String Website
          +
          Validated and normalized displayable website of the organization. Can contain multiple values (concatenated by comma)
          +
        • +
        + + + +
          +
        • +

          ApplicationDeadline

          +
          public SovrenPrimitive<java.time.LocalDate> ApplicationDeadline
          +
          Deadline to apply for the job
          +
        • +
        + + + +
          +
        • +

          PostedDate

          +
          public SovrenPrimitive<java.time.LocalDate> PostedDate
          +
          Date the job was posted
          +
        • +
        + + + +
          +
        • +

          ReferenceNumber

          +
          public String ReferenceNumber
          +
          Any reference number found for the job application
          +
        • +
        +
      • +
      + +
        +
      • + + +

        Constructor Detail

        + + + +
          +
        • +

          ApplicationDetails

          +
          public ApplicationDetails()
          +
        • +
        +
      • +
      +
    • +
    +
    +
    + + + + + +

    Copyright © 2023. All rights reserved.

    + + diff --git a/docs/com/sovren/models/job/EmployerNames.html b/docs/com/sovren/models/job/EmployerNames.html index 451dc60bd..4777c5b86 100644 --- a/docs/com/sovren/models/job/EmployerNames.html +++ b/docs/com/sovren/models/job/EmployerNames.html @@ -2,10 +2,10 @@ - + EmployerNames (Sovren Java SDK 1.7.1 API) - + @@ -44,7 +44,7 @@