com.conekta.model.ChargeRequest 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.conekta.model.ChargeRequestPaymentMethod;
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;
/**
* The charges to be made
*/
@JsonPropertyOrder({
ChargeRequest.JSON_PROPERTY_AMOUNT,
ChargeRequest.JSON_PROPERTY_PAYMENT_METHOD,
ChargeRequest.JSON_PROPERTY_REFERENCE_ID
})
@JsonTypeName("charge_request")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0")
public class ChargeRequest {
public static final String JSON_PROPERTY_AMOUNT = "amount";
private Integer amount;
public static final String JSON_PROPERTY_PAYMENT_METHOD = "payment_method";
private ChargeRequestPaymentMethod paymentMethod;
public static final String JSON_PROPERTY_REFERENCE_ID = "reference_id";
private String referenceId;
public ChargeRequest() {
}
public ChargeRequest amount(Integer amount) {
this.amount = amount;
return this;
}
/**
* Amount to be charged in cents
* @return amount
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_AMOUNT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Integer getAmount() {
return amount;
}
@JsonProperty(JSON_PROPERTY_AMOUNT)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setAmount(Integer amount) {
this.amount = amount;
}
public ChargeRequest paymentMethod(ChargeRequestPaymentMethod paymentMethod) {
this.paymentMethod = paymentMethod;
return this;
}
/**
* Get paymentMethod
* @return paymentMethod
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_PAYMENT_METHOD)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public ChargeRequestPaymentMethod getPaymentMethod() {
return paymentMethod;
}
@JsonProperty(JSON_PROPERTY_PAYMENT_METHOD)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setPaymentMethod(ChargeRequestPaymentMethod paymentMethod) {
this.paymentMethod = paymentMethod;
}
public ChargeRequest referenceId(String referenceId) {
this.referenceId = referenceId;
return this;
}
/**
* Custom reference to add to the charge
* @return referenceId
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_REFERENCE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getReferenceId() {
return referenceId;
}
@JsonProperty(JSON_PROPERTY_REFERENCE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setReferenceId(String referenceId) {
this.referenceId = referenceId;
}
/**
* Return true if this charge_request object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ChargeRequest chargeRequest = (ChargeRequest) o;
return Objects.equals(this.amount, chargeRequest.amount) &&
Objects.equals(this.paymentMethod, chargeRequest.paymentMethod) &&
Objects.equals(this.referenceId, chargeRequest.referenceId);
}
@Override
public int hashCode() {
return Objects.hash(amount, paymentMethod, referenceId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ChargeRequest {\n");
sb.append(" amount: ").append(toIndentedString(amount)).append("\n");
sb.append(" paymentMethod: ").append(toIndentedString(paymentMethod)).append("\n");
sb.append(" referenceId: ").append(toIndentedString(referenceId)).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 ");
}
}