com.squareup.square.models.V1CreateRefundRequest Maven / Gradle / Ivy
package com.squareup.square.models;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonGetter;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
/**
* This is a model class for V1CreateRefundRequest type.
*/
public class V1CreateRefundRequest {
private final String paymentId;
private final String type;
private final String reason;
@JsonInclude(JsonInclude.Include.NON_NULL)
private final V1Money refundedMoney;
@JsonInclude(JsonInclude.Include.NON_NULL)
private final String requestIdempotenceKey;
/**
* Initialization constructor.
* @param paymentId String value for paymentId.
* @param type String value for type.
* @param reason String value for reason.
* @param refundedMoney V1Money value for refundedMoney.
* @param requestIdempotenceKey String value for requestIdempotenceKey.
*/
@JsonCreator
public V1CreateRefundRequest(
@JsonProperty("payment_id") String paymentId,
@JsonProperty("type") String type,
@JsonProperty("reason") String reason,
@JsonProperty("refunded_money") V1Money refundedMoney,
@JsonProperty("request_idempotence_key") String requestIdempotenceKey) {
this.paymentId = paymentId;
this.type = type;
this.reason = reason;
this.refundedMoney = refundedMoney;
this.requestIdempotenceKey = requestIdempotenceKey;
}
/**
* Getter for PaymentId.
* The ID of the payment to refund. If you are creating a `PARTIAL` refund for a split tender
* payment, instead provide the id of the particular tender you want to refund.
* @return Returns the String
*/
@JsonGetter("payment_id")
public String getPaymentId() {
return paymentId;
}
/**
* Getter for Type.
* @return Returns the String
*/
@JsonGetter("type")
public String getType() {
return type;
}
/**
* Getter for Reason.
* The reason for the refund.
* @return Returns the String
*/
@JsonGetter("reason")
public String getReason() {
return reason;
}
/**
* Getter for RefundedMoney.
* @return Returns the V1Money
*/
@JsonGetter("refunded_money")
public V1Money getRefundedMoney() {
return refundedMoney;
}
/**
* Getter for RequestIdempotenceKey.
* An optional key to ensure idempotence if you issue the same PARTIAL refund request more than
* once.
* @return Returns the String
*/
@JsonGetter("request_idempotence_key")
public String getRequestIdempotenceKey() {
return requestIdempotenceKey;
}
@Override
public int hashCode() {
return Objects.hash(paymentId, type, reason, refundedMoney, requestIdempotenceKey);
}
@Override
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof V1CreateRefundRequest)) {
return false;
}
V1CreateRefundRequest other = (V1CreateRefundRequest) obj;
return Objects.equals(paymentId, other.paymentId)
&& Objects.equals(type, other.type)
&& Objects.equals(reason, other.reason)
&& Objects.equals(refundedMoney, other.refundedMoney)
&& Objects.equals(requestIdempotenceKey, other.requestIdempotenceKey);
}
/**
* Converts this V1CreateRefundRequest into string format.
* @return String representation of this class
*/
@Override
public String toString() {
return "V1CreateRefundRequest [" + "paymentId=" + paymentId + ", type=" + type + ", reason="
+ reason + ", refundedMoney=" + refundedMoney + ", requestIdempotenceKey="
+ requestIdempotenceKey + "]";
}
/**
* Builds a new {@link V1CreateRefundRequest.Builder} object.
* Creates the instance with the state of the current model.
* @return a new {@link V1CreateRefundRequest.Builder} object
*/
public Builder toBuilder() {
Builder builder = new Builder(paymentId, type, reason)
.refundedMoney(getRefundedMoney())
.requestIdempotenceKey(getRequestIdempotenceKey());
return builder;
}
/**
* Class to build instances of {@link V1CreateRefundRequest}.
*/
public static class Builder {
private String paymentId;
private String type;
private String reason;
private V1Money refundedMoney;
private String requestIdempotenceKey;
/**
* Initialization constructor.
* @param paymentId String value for paymentId.
* @param type String value for type.
* @param reason String value for reason.
*/
public Builder(String paymentId, String type, String reason) {
this.paymentId = paymentId;
this.type = type;
this.reason = reason;
}
/**
* Setter for paymentId.
* @param paymentId String value for paymentId.
* @return Builder
*/
public Builder paymentId(String paymentId) {
this.paymentId = paymentId;
return this;
}
/**
* Setter for type.
* @param type String value for type.
* @return Builder
*/
public Builder type(String type) {
this.type = type;
return this;
}
/**
* Setter for reason.
* @param reason String value for reason.
* @return Builder
*/
public Builder reason(String reason) {
this.reason = reason;
return this;
}
/**
* Setter for refundedMoney.
* @param refundedMoney V1Money value for refundedMoney.
* @return Builder
*/
public Builder refundedMoney(V1Money refundedMoney) {
this.refundedMoney = refundedMoney;
return this;
}
/**
* Setter for requestIdempotenceKey.
* @param requestIdempotenceKey String value for requestIdempotenceKey.
* @return Builder
*/
public Builder requestIdempotenceKey(String requestIdempotenceKey) {
this.requestIdempotenceKey = requestIdempotenceKey;
return this;
}
/**
* Builds a new {@link V1CreateRefundRequest} object using the set fields.
* @return {@link V1CreateRefundRequest}
*/
public V1CreateRefundRequest build() {
return new V1CreateRefundRequest(paymentId, type, reason, refundedMoney,
requestIdempotenceKey);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy