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

com.tinypass.client.publisher.model.LinkedTermPurchaseParams Maven / Gradle / Ivy

There is a newer version: 16.366.0
Show newest version
package com.tinypass.client.publisher.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 LinkedTermPurchaseParams {

  /* The kind of trial applied to the subscription. The allowed values are \"Free\", \"Paid\", and \"No\". */
  private String trial = null;
  


  public String getTrial() {
    return trial;
  }
  public void setTrial(String trial) {
    this.trial = trial;
  }


  @Override
  public String toString()  {
    StringBuilder sb = new StringBuilder();
    sb.append("class LinkedTermPurchaseParams {\n");
    sb.append("  trial: ").append(trial).append("\n");
    sb.append("}\n");
    return sb.toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy