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

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

There is a newer version: 16.331.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;
import java.util.ArrayList;
import java.util.List;

public class BillingPlanTable {

  /* An array of JSON objects describing the billing plan (includes \"date\", \"period\", \"shortPeriod\", \"originalPrice\", and \"billingPeriod\") */
  private List paymentBillingPlanTable = new ArrayList();
  


  public List getPaymentBillingPlanTable() {
    return paymentBillingPlanTable;
  }
  public void setPaymentBillingPlanTable(List paymentBillingPlanTable) {
    this.paymentBillingPlanTable = paymentBillingPlanTable;
  }


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