com.conekta.model.PaymentMethodTokenRequest 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;
/**
* PaymentMethodTokenRequest
*/
@JsonPropertyOrder({
PaymentMethodTokenRequest.JSON_PROPERTY_TYPE,
PaymentMethodTokenRequest.JSON_PROPERTY_TOKEN_ID
})
@JsonTypeName("payment_method_token_request")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0")
public class PaymentMethodTokenRequest {
public static final String JSON_PROPERTY_TYPE = "type";
private String type;
public static final String JSON_PROPERTY_TOKEN_ID = "token_id";
private String tokenId;
public PaymentMethodTokenRequest() {
}
public PaymentMethodTokenRequest type(String type) {
this.type = type;
return this;
}
/**
* Type of payment method
* @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 PaymentMethodTokenRequest tokenId(String tokenId) {
this.tokenId = tokenId;
return this;
}
/**
* Token id that will be used to create a \"card\" type payment method. See the (subscriptions)[https://developers.conekta.com/v2.1.0/reference/createsubscription] tutorial for more information on how to tokenize cards.
* @return tokenId
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_TOKEN_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getTokenId() {
return tokenId;
}
@JsonProperty(JSON_PROPERTY_TOKEN_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setTokenId(String tokenId) {
this.tokenId = tokenId;
}
/**
* Return true if this payment_method_token_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;
}
PaymentMethodTokenRequest paymentMethodTokenRequest = (PaymentMethodTokenRequest) o;
return Objects.equals(this.type, paymentMethodTokenRequest.type) &&
Objects.equals(this.tokenId, paymentMethodTokenRequest.tokenId);
}
@Override
public int hashCode() {
return Objects.hash(type, tokenId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PaymentMethodTokenRequest {\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" tokenId: ").append(toIndentedString(tokenId)).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 ");
}
}