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

com.tinypass.client.publisher.model.Bill 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 Bill {

  /* The public ID for the bill */
  private String billId = null;
  

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

  /* Creation date of a bill */
  private String creationDate = null;
  

  /* Status of a bill */
  private String status = null;
  

  /* URL of a bill */
  private String url = null;
  

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

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

  /* The URL of the resource image */
  private String resourceImageUrl = null;
  

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

  /* The billing plan for the term */
  private String paymentBillingPlan = null;
  

  /* Is bill cancelable */
  private String cancelable = null;
  

  /* Email of the user bill issued to */
  private String issuedToEmail = null;
  


  public String getBillId() {
    return billId;
  }
  public void setBillId(String billId) {
    this.billId = billId;
  }


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


  public String getCreationDate() {
    return creationDate;
  }
  public void setCreationDate(String creationDate) {
    this.creationDate = creationDate;
  }


  public String getStatus() {
    return status;
  }
  public void setStatus(String status) {
    this.status = status;
  }


  public String getUrl() {
    return url;
  }
  public void setUrl(String url) {
    this.url = url;
  }


  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 String getResourceImageUrl() {
    return resourceImageUrl;
  }
  public void setResourceImageUrl(String resourceImageUrl) {
    this.resourceImageUrl = resourceImageUrl;
  }


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


  public String getPaymentBillingPlan() {
    return paymentBillingPlan;
  }
  public void setPaymentBillingPlan(String paymentBillingPlan) {
    this.paymentBillingPlan = paymentBillingPlan;
  }


  public String getCancelable() {
    return cancelable;
  }
  public void setCancelable(String cancelable) {
    this.cancelable = cancelable;
  }


  public String getIssuedToEmail() {
    return issuedToEmail;
  }
  public void setIssuedToEmail(String issuedToEmail) {
    this.issuedToEmail = issuedToEmail;
  }


  @Override
  public String toString()  {
    StringBuilder sb = new StringBuilder();
    sb.append("class Bill {\n");
    sb.append("  billId: ").append(billId).append("\n");
    sb.append("  type: ").append(type).append("\n");
    sb.append("  creationDate: ").append(creationDate).append("\n");
    sb.append("  status: ").append(status).append("\n");
    sb.append("  url: ").append(url).append("\n");
    sb.append("  rid: ").append(rid).append("\n");
    sb.append("  resourceName: ").append(resourceName).append("\n");
    sb.append("  resourceImageUrl: ").append(resourceImageUrl).append("\n");
    sb.append("  name: ").append(name).append("\n");
    sb.append("  paymentBillingPlan: ").append(paymentBillingPlan).append("\n");
    sb.append("  cancelable: ").append(cancelable).append("\n");
    sb.append("  issuedToEmail: ").append(issuedToEmail).append("\n");
    sb.append("}\n");
    return sb.toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy