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

com.tinypass.client.anon.model.PasswordlessPurchaseCheckResult 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 com.tinypass.client.anon.model.Resource;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;

public class PasswordlessPurchaseCheckResult {

  /* Polling status */
  private String pollStatus = null;
  

  /* The resource */
  private Resource resource = null;
  

  /* Parameters to show offer for continue payment flow after confirmation */
  private String showOfferParams = null;
  

  /* The term type */
  private String type = null;
  


  public String getPollStatus() {
    return pollStatus;
  }
  public void setPollStatus(String pollStatus) {
    this.pollStatus = pollStatus;
  }


  public Resource getResource() {
    return resource;
  }
  public void setResource(Resource resource) {
    this.resource = resource;
  }


  public String getShowOfferParams() {
    return showOfferParams;
  }
  public void setShowOfferParams(String showOfferParams) {
    this.showOfferParams = showOfferParams;
  }


  public String getType() {
    return type;
  }
  public void setType(String type) {
    this.type = type;
  }


  @Override
  public String toString()  {
    StringBuilder sb = new StringBuilder();
    sb.append("class PasswordlessPurchaseCheckResult {\n");
    sb.append("  pollStatus: ").append(pollStatus).append("\n");
    sb.append("  resource: ").append(resource).append("\n");
    sb.append("  showOfferParams: ").append(showOfferParams).append("\n");
    sb.append("  type: ").append(type).append("\n");
    sb.append("}\n");
    return sb.toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy