io.swagger.client.model.PricingModel Maven / Gradle / Ivy
/*
* Qualpay Platform API
* This document describes the Qualpay Platform API.
*
* OpenAPI spec version: 1.1.9
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package io.swagger.client.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.client.model.PlanModel;
import java.io.IOException;
/**
* PricingModel
*/
public class PricingModel {
@SerializedName("pricing_id")
private Long pricingId = null;
@SerializedName("plan")
private PlanModel plan = null;
/**
* Unique ID assigned by Qualpay to this pricing plan.
* @return pricingId
**/
@ApiModelProperty(example = "1", value = "Unique ID assigned by Qualpay to this pricing plan.")
public Long getPricingId() {
return pricingId;
}
/**
* The pricing plan object.
* @return plan
**/
@ApiModelProperty(value = "The pricing plan object.")
public PlanModel getPlan() {
return plan;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PricingModel pricingModel = (PricingModel) o;
return Objects.equals(this.pricingId, pricingModel.pricingId) &&
Objects.equals(this.plan, pricingModel.plan);
}
@Override
public int hashCode() {
return Objects.hash(pricingId, plan);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PricingModel {\n");
sb.append(" pricingId: ").append(toIndentedString(pricingId)).append("\n");
sb.append(" plan: ").append(toIndentedString(plan)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy