All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ibm.watson.personality_insights.v3.model.Profile Maven / Gradle / Ivy

/*
 * Copyright 2018 IBM Corp. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
 * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations under the License.
 */
package com.ibm.watson.personality_insights.v3.model;

import java.util.List;

import com.google.gson.annotations.SerializedName;
import com.ibm.cloud.sdk.core.service.model.GenericModel;

/**
 * The personality profile that the service generated for the input content.
 */
public class Profile extends GenericModel {

  /**
   * The language model that was used to process the input.
   */
  public interface ProcessedLanguage {
    /** ar. */
    String AR = "ar";
    /** en. */
    String EN = "en";
    /** es. */
    String ES = "es";
    /** ja. */
    String JA = "ja";
    /** ko. */
    String KO = "ko";
  }

  @SerializedName("processed_language")
  private String processedLanguage;
  @SerializedName("word_count")
  private Long wordCount;
  @SerializedName("word_count_message")
  private String wordCountMessage;
  private List personality;
  private List needs;
  private List values;
  private List behavior;
  @SerializedName("consumption_preferences")
  private List consumptionPreferences;
  private List warnings;

  /**
   * Gets the processedLanguage.
   *
   * The language model that was used to process the input.
   *
   * @return the processedLanguage
   */
  public String getProcessedLanguage() {
    return processedLanguage;
  }

  /**
   * Gets the wordCount.
   *
   * The number of words from the input that were used to produce the profile.
   *
   * @return the wordCount
   */
  public Long getWordCount() {
    return wordCount;
  }

  /**
   * Gets the wordCountMessage.
   *
   * When guidance is appropriate, a string that provides a message that indicates the number of words found and where
   * that value falls in the range of required or suggested number of words.
   *
   * @return the wordCountMessage
   */
  public String getWordCountMessage() {
    return wordCountMessage;
  }

  /**
   * Gets the personality.
   *
   * A recursive array of `Trait` objects that provides detailed results for the Big Five personality characteristics
   * (dimensions and facets) inferred from the input text.
   *
   * @return the personality
   */
  public List getPersonality() {
    return personality;
  }

  /**
   * Gets the needs.
   *
   * Detailed results for the Needs characteristics inferred from the input text.
   *
   * @return the needs
   */
  public List getNeeds() {
    return needs;
  }

  /**
   * Gets the values.
   *
   * Detailed results for the Values characteristics inferred from the input text.
   *
   * @return the values
   */
  public List getValues() {
    return values;
  }

  /**
   * Gets the behavior.
   *
   * For JSON content that is timestamped, detailed results about the social behavior disclosed by the input in terms of
   * temporal characteristics. The results include information about the distribution of the content over the days of
   * the week and the hours of the day.
   *
   * @return the behavior
   */
  public List getBehavior() {
    return behavior;
  }

  /**
   * Gets the consumptionPreferences.
   *
   * If the **consumption_preferences** parameter is `true`, detailed results for each category of consumption
   * preferences. Each element of the array provides information inferred from the input text for the individual
   * preferences of that category.
   *
   * @return the consumptionPreferences
   */
  public List getConsumptionPreferences() {
    return consumptionPreferences;
  }

  /**
   * Gets the warnings.
   *
   * An array of warning messages that are associated with the input text for the request. The array is empty if the
   * input generated no warnings.
   *
   * @return the warnings
   */
  public List getWarnings() {
    return warnings;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy