com.textkernel.tx.models.resume.contactinfo.ContactInformation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tx-java Show documentation
Show all versions of tx-java Show documentation
The official Java SDK for the Textkernel Tx v10 API.
The newest version!
// Copyright © 2023 Textkernel BV. All rights reserved.
// This file is provided for use by, or on behalf of, Textkernel licensees
// within the terms of their license of Textkernel products or Textkernel customers
// within the Terms of Service pertaining to the Textkernel SaaS products.
package com.textkernel.tx.models.resume.contactinfo;
import java.util.List;
import com.textkernel.tx.models.Location;
/**
* A candidate's contact information listed on a resume
*/
public class ContactInformation {
/** The candidate's name*/
public PersonName CandidateName;
/** The candidate's phone numbers. If multiple numbers are found, mobile phone numbers will be listed first*/
public List Telephones;
/** The candidate's email addresses*/
public List EmailAddresses;
/**
* The candidate's location/address. The Parser does not standardize addresses. Address standardization
* services are available, including for example the Google Maps API, that can take the Parser's contact
* info fields and standardize/geocode the data.
*/
public Location Location;
/** The candidate's web addresses (URLs, social media) listed on the resume*/
public List WebAddresses;
}