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

com.bitmovin.api.sdk.model.DailyStatisticsPerLabel Maven / Gradle / Ivy

There is a newer version: 1.205.0
Show newest version
package com.bitmovin.api.sdk.model;

import java.util.Objects;
import java.util.Arrays;
import com.bitmovin.api.sdk.model.DailyStatistics;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;

/**
 * DailyStatisticsPerLabel
 */

public class DailyStatisticsPerLabel {
  @JsonProperty("date")
  @com.fasterxml.jackson.annotation.JsonFormat
        (shape = com.fasterxml.jackson.annotation.JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd")
  private Date date;

  @JsonProperty("labels")
  @JsonInclude(JsonInclude.Include.NON_EMPTY)
  private List labels = new ArrayList();


  /**
   * Date, format. yyyy-MM-dd (required)
   * @return date
   */
  public Date getDate() {
    return date;
  }

  /**
   * Date, format. yyyy-MM-dd (required)
   *
   * @param date
   *        Date, format. yyyy-MM-dd (required)
   */
  public void setDate(Date date) {
    this.date = date;
  }


  public DailyStatisticsPerLabel addLabelsItem(DailyStatistics labelsItem) {
    this.labels.add(labelsItem);
    return this;
  }

  /**
   * List of labels and their aggregated statistics (required)
   * @return labels
   */
  public List getLabels() {
    return labels;
  }

  /**
   * List of labels and their aggregated statistics (required)
   *
   * @param labels
   *        List of labels and their aggregated statistics (required)
   */
  public void setLabels(List labels) {
    this.labels = labels;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    DailyStatisticsPerLabel dailyStatisticsPerLabel = (DailyStatisticsPerLabel) o;
    return Objects.equals(this.date, dailyStatisticsPerLabel.date) &&
        Objects.equals(this.labels, dailyStatisticsPerLabel.labels);
  }

  @Override
  public int hashCode() {
    return Objects.hash(date, labels);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class DailyStatisticsPerLabel {\n");
    
    sb.append("    date: ").append(toIndentedString(date)).append("\n");
    sb.append("    labels: ").append(toIndentedString(labels)).append("\n");
    sb.append("}");
    return sb.toString();
  }

  /**
   * Convert the given object to string with each line indented by 4 spaces
   * (except the first line).
   */
  private String toIndentedString(java.lang.Object o) {
    if (o == null) {
      return "null";
    }
    return o.toString().replace("\n", "\n    ");
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy