com.conekta.model.DiscountLinesDataResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ct-conekta-java Show documentation
Show all versions of ct-conekta-java Show documentation
This is a java library that allows interaction with https://api.conekta.io API.
The newest version!
/*
* Conekta API
* Conekta sdk
*
* The version of the OpenAPI document: 2.1.0
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.conekta.model;
import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.conekta.JSON;
/**
* DiscountLinesDataResponse
*/
@JsonPropertyOrder({
DiscountLinesDataResponse.JSON_PROPERTY_AMOUNT,
DiscountLinesDataResponse.JSON_PROPERTY_CODE,
DiscountLinesDataResponse.JSON_PROPERTY_TYPE,
DiscountLinesDataResponse.JSON_PROPERTY_ID,
DiscountLinesDataResponse.JSON_PROPERTY_OBJECT,
DiscountLinesDataResponse.JSON_PROPERTY_PARENT_ID
})
@JsonTypeName("discount_lines_data_response")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0")
public class DiscountLinesDataResponse {
public static final String JSON_PROPERTY_AMOUNT = "amount";
private Long amount;
public static final String JSON_PROPERTY_CODE = "code";
private String code;
public static final String JSON_PROPERTY_TYPE = "type";
private String type;
public static final String JSON_PROPERTY_ID = "id";
private String id;
public static final String JSON_PROPERTY_OBJECT = "object";
private String _object;
public static final String JSON_PROPERTY_PARENT_ID = "parent_id";
private String parentId;
public DiscountLinesDataResponse() {
}
public DiscountLinesDataResponse amount(Long amount) {
this.amount = amount;
return this;
}
/**
* The amount to be deducted from the total sum of all payments, in cents.
* minimum: 0
* @return amount
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_AMOUNT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Long getAmount() {
return amount;
}
@JsonProperty(JSON_PROPERTY_AMOUNT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setAmount(Long amount) {
this.amount = amount;
}
public DiscountLinesDataResponse code(String code) {
this.code = code;
return this;
}
/**
* Discount code.
* @return code
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_CODE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getCode() {
return code;
}
@JsonProperty(JSON_PROPERTY_CODE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setCode(String code) {
this.code = code;
}
public DiscountLinesDataResponse type(String type) {
this.type = type;
return this;
}
/**
* It can be 'loyalty', 'campaign', 'coupon' o 'sign'
* @return type
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getType() {
return type;
}
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setType(String type) {
this.type = type;
}
public DiscountLinesDataResponse id(String id) {
this.id = id;
return this;
}
/**
* The discount line id
* @return id
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getId() {
return id;
}
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setId(String id) {
this.id = id;
}
public DiscountLinesDataResponse _object(String _object) {
this._object = _object;
return this;
}
/**
* The object name
* @return _object
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_OBJECT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getObject() {
return _object;
}
@JsonProperty(JSON_PROPERTY_OBJECT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setObject(String _object) {
this._object = _object;
}
public DiscountLinesDataResponse parentId(String parentId) {
this.parentId = parentId;
return this;
}
/**
* The order id
* @return parentId
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_PARENT_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getParentId() {
return parentId;
}
@JsonProperty(JSON_PROPERTY_PARENT_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setParentId(String parentId) {
this.parentId = parentId;
}
/**
* Return true if this discount_lines_data_response object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DiscountLinesDataResponse discountLinesDataResponse = (DiscountLinesDataResponse) o;
return Objects.equals(this.amount, discountLinesDataResponse.amount) &&
Objects.equals(this.code, discountLinesDataResponse.code) &&
Objects.equals(this.type, discountLinesDataResponse.type) &&
Objects.equals(this.id, discountLinesDataResponse.id) &&
Objects.equals(this._object, discountLinesDataResponse._object) &&
Objects.equals(this.parentId, discountLinesDataResponse.parentId);
}
@Override
public int hashCode() {
return Objects.hash(amount, code, type, id, _object, parentId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DiscountLinesDataResponse {\n");
sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
sb.append(" code: ").append(toIndentedString(code)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" _object: ").append(toIndentedString(_object)).append("\n");
sb.append(" parentId: ").append(toIndentedString(parentId)).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(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}