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

io.github.zeroone3010.yahueapi.v2.domain.update.Dimming Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.github.zeroone3010.yahueapi.v2.domain.JsonStringUtil;

@JsonInclude(JsonInclude.Include.NON_NULL)
public class Dimming {

  @JsonProperty("brightness")
  private int brightness;

  public int getBrightness() {
    return brightness;
  }

  /**
   * Brightness percentage. value cannot be 0, writing 0 changes it to the lowest possible brightness.
   *
   * @param brightness A number greater than zero and maximum of 100.
   * @return Self, so that one can also use this method like a fluent builder.
   */
  public Dimming setBrightness(int brightness) {
    this.brightness = brightness;
    return this;
  }

  @Override
  public String toString() {
    return JsonStringUtil.toJsonString(this);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy