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

com.tinypass.client.publisher.model.Link 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 com.tinypass.client.publisher.model.PeriodLink;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;

public class Link {

  /* The term ID */
  private String termId = null;
  

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

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

  /* The description of the term billing plan */
  private String paymentBillingPlanDescription = null;
  

  /* The resource ID */
  private String rid = null;
  

  /* The name of resource */
  private String resourceName = null;
  

    private List periods = new ArrayList();
  


  public String getTermId() {
    return termId;
  }
  public void setTermId(String termId) {
    this.termId = termId;
  }


  public String getName() {
    return name;
  }
  public void setName(String name) {
    this.name = name;
  }


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


  public String getPaymentBillingPlanDescription() {
    return paymentBillingPlanDescription;
  }
  public void setPaymentBillingPlanDescription(String paymentBillingPlanDescription) {
    this.paymentBillingPlanDescription = paymentBillingPlanDescription;
  }


  public String getRid() {
    return rid;
  }
  public void setRid(String rid) {
    this.rid = rid;
  }


  public String getResourceName() {
    return resourceName;
  }
  public void setResourceName(String resourceName) {
    this.resourceName = resourceName;
  }


  public List getPeriods() {
    return periods;
  }
  public void setPeriods(List periods) {
    this.periods = periods;
  }


  @Override
  public String toString()  {
    StringBuilder sb = new StringBuilder();
    sb.append("class Link {\n");
    sb.append("  termId: ").append(termId).append("\n");
    sb.append("  name: ").append(name).append("\n");
    sb.append("  type: ").append(type).append("\n");
    sb.append("  paymentBillingPlanDescription: ").append(paymentBillingPlanDescription).append("\n");
    sb.append("  rid: ").append(rid).append("\n");
    sb.append("  resourceName: ").append(resourceName).append("\n");
    sb.append("  periods: ").append(periods).append("\n");
    sb.append("}\n");
    return sb.toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy