io.swagger.client.model.GetAppData 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.ApplicationModel;
import io.swagger.client.model.PricingModel;
import java.io.IOException;
/**
* GetAppData
*/
public class GetAppData {
@SerializedName("app")
private ApplicationModel app = null;
@SerializedName("pricing")
private PricingModel pricing = null;
public GetAppData app(ApplicationModel app) {
this.app = app;
return this;
}
/**
* The details specific to this application.
* @return app
**/
@ApiModelProperty(value = "The details specific to this application.")
public ApplicationModel getApp() {
return app;
}
public void setApp(ApplicationModel app) {
this.app = app;
}
public GetAppData pricing(PricingModel pricing) {
this.pricing = pricing;
return this;
}
/**
* The pricing available to this application.
* @return pricing
**/
@ApiModelProperty(value = "The pricing available to this application.")
public PricingModel getPricing() {
return pricing;
}
public void setPricing(PricingModel pricing) {
this.pricing = pricing;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
GetAppData getAppData = (GetAppData) o;
return Objects.equals(this.app, getAppData.app) &&
Objects.equals(this.pricing, getAppData.pricing);
}
@Override
public int hashCode() {
return Objects.hash(app, pricing);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class GetAppData {\n");
sb.append(" app: ").append(toIndentedString(app)).append("\n");
sb.append(" pricing: ").append(toIndentedString(pricing)).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