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

com.geotab.model.search.AddInConfigurationSearch Maven / Gradle / Ivy

package com.geotab.model.search;

import com.geotab.model.entity.addins.AddInConfiguration;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

/**
 * The object used to specify the arguments when searching for {@link AddInConfiguration}.
 */
@Getter @Setter
@NoArgsConstructor
public class AddInConfigurationSearch extends Search {
  /**
   * Gets or sets the solution id related to this Add-In.
   */
  public String solutionId;
  /**
   * Gets or sets the name of this Add-In.
   */
  private String name;
  /**
   * Gets or sets the email address for support related to this Add-In.
   */
  private String supportEmail;

  @Builder
  public AddInConfigurationSearch(String id, String solutionId, String name, String supportEmail) {
    super(id);
    this.solutionId = solutionId;
    this.name = name;
    this.supportEmail = supportEmail;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy