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

com.tinypass.client.anon.model.PublicCaptchaConfig Maven / Gradle / Ivy

There is a newer version: 16.366.0
Show newest version
package com.tinypass.client.anon.model;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;

public class PublicCaptchaConfig {

  /* The application ID */
  private String aid = null;
  

  /* Whether the property is enabled */
  private Boolean enabled = null;
  

  /* reCAPTCHA v3 site key */
  private String captcha3SiteKey = null;
  


  public String getAid() {
    return aid;
  }
  public void setAid(String aid) {
    this.aid = aid;
  }


  public Boolean getEnabled() {
    return enabled;
  }
  public void setEnabled(Boolean enabled) {
    this.enabled = enabled;
  }


  public String getCaptcha3SiteKey() {
    return captcha3SiteKey;
  }
  public void setCaptcha3SiteKey(String captcha3SiteKey) {
    this.captcha3SiteKey = captcha3SiteKey;
  }


  @Override
  public String toString()  {
    StringBuilder sb = new StringBuilder();
    sb.append("class PublicCaptchaConfig {\n");
    sb.append("  aid: ").append(aid).append("\n");
    sb.append("  enabled: ").append(enabled).append("\n");
    sb.append("  captcha3SiteKey: ").append(captcha3SiteKey).append("\n");
    sb.append("}\n");
    return sb.toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy