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

com.geotab.model.entity.textmessage.IoxOutputContent Maven / Gradle / Ivy

/*
 *
 * 2020 Copyright (C) Geotab Inc. All rights reserved.
 */

package com.geotab.model.entity.textmessage;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.geotab.model.enumeration.MessageContentType;
import lombok.Builder;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.ToString;

/**
 * The contents of a {@link TextMessage} that can be used to control the state of an IOX-OUTPUT.
 */
@Getter
@Setter
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
public class IoxOutputContent extends DataToComponentContent {

  /**
   * The value indicating whether the relay state. [true] if the relay is on; otherwise, [false].
   */
  @JsonProperty("isRelayOn")
  private boolean isRelayOn;

  @Builder(builderMethodName = "ioxOutputContentBuilder")
  public IoxOutputContent(boolean isRelayOn) {
    super(MessageContentType.IOX_OUTPUT, 2, 6, 0, true);
    this.isRelayOn = isRelayOn;
  }

  public IoxOutputContent() {
    super(MessageContentType.IOX_OUTPUT, 2, 6, 0, true);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy