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

io.github.zeroone3010.yahueapi.v2.domain.Effects Maven / Gradle / Ivy

The newest version!
package io.github.zeroone3010.yahueapi.v2.domain;

import com.fasterxml.jackson.annotation.JsonProperty;
import io.github.zeroone3010.yahueapi.v2.domain.update.EffectType;

import java.util.List;

public class Effects {
  @JsonProperty("effect")
  private EffectType effect;

  @JsonProperty("status_values")
  private List statusValues;

  @JsonProperty("status")
  private EffectType status;

  @JsonProperty("effect_values")
  private List effectValues;

  public EffectType getEffect() {
    return effect;
  }

  public List getStatusValues() {
    return statusValues;
  }

  public EffectType getStatus() {
    return status;
  }

  public List getEffectValues() {
    return effectValues;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy