
com.textkernel.tx.models.dataenrichment.SkillMultipleDescriptions Maven / Gradle / Ivy
package com.textkernel.tx.models.dataenrichment;
import java.util.List;
/**
* A skill object.
*/
public class SkillMultipleDescriptions extends Skill {
/**
* A list of descriptions of the skill in all supported/requested languages.
*/
public List Descriptions;
/**
* The description of the skill in the requested language.
NOTE: if multiple languages were requested, this is simply the first from {@link Descriptions}
*/
public SkillMultipleDescriptions(){
this.Description = (Descriptions != null && !Descriptions.isEmpty()) ? Descriptions.get(0).Description : null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy