
com.squareup.square.legacy.models.LoyaltyEventRedeemReward Maven / Gradle / Ivy
package com.squareup.square.legacy.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 LoyaltyEventRedeemReward type.
*/
public class LoyaltyEventRedeemReward {
private final String loyaltyProgramId;
private final String rewardId;
private final String orderId;
/**
* Initialization constructor.
* @param loyaltyProgramId String value for loyaltyProgramId.
* @param rewardId String value for rewardId.
* @param orderId String value for orderId.
*/
@JsonCreator
public LoyaltyEventRedeemReward(
@JsonProperty("loyalty_program_id") String loyaltyProgramId,
@JsonProperty("reward_id") String rewardId,
@JsonProperty("order_id") String orderId) {
this.loyaltyProgramId = loyaltyProgramId;
this.rewardId = rewardId;
this.orderId = orderId;
}
/**
* Getter for LoyaltyProgramId.
* The ID of the [loyalty program](entity:LoyaltyProgram).
* @return Returns the String
*/
@JsonGetter("loyalty_program_id")
public String getLoyaltyProgramId() {
return loyaltyProgramId;
}
/**
* Getter for RewardId.
* The ID of the redeemed [loyalty reward](entity:LoyaltyReward). This field is returned only if
* the event source is `LOYALTY_API`.
* @return Returns the String
*/
@JsonGetter("reward_id")
@JsonInclude(JsonInclude.Include.NON_NULL)
public String getRewardId() {
return rewardId;
}
/**
* Getter for OrderId.
* The ID of the [order](entity:Order) that redeemed the reward. This field is returned only if
* the Orders API is used to process orders.
* @return Returns the String
*/
@JsonGetter("order_id")
@JsonInclude(JsonInclude.Include.NON_NULL)
public String getOrderId() {
return orderId;
}
@Override
public int hashCode() {
return Objects.hash(loyaltyProgramId, rewardId, orderId);
}
@Override
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof LoyaltyEventRedeemReward)) {
return false;
}
LoyaltyEventRedeemReward other = (LoyaltyEventRedeemReward) obj;
return Objects.equals(loyaltyProgramId, other.loyaltyProgramId)
&& Objects.equals(rewardId, other.rewardId)
&& Objects.equals(orderId, other.orderId);
}
/**
* Converts this LoyaltyEventRedeemReward into string format.
* @return String representation of this class
*/
@Override
public String toString() {
return "LoyaltyEventRedeemReward [" + "loyaltyProgramId=" + loyaltyProgramId + ", rewardId=" + rewardId
+ ", orderId=" + orderId + "]";
}
/**
* Builds a new {@link LoyaltyEventRedeemReward.Builder} object.
* Creates the instance with the state of the current model.
* @return a new {@link LoyaltyEventRedeemReward.Builder} object
*/
public Builder toBuilder() {
Builder builder = new Builder(loyaltyProgramId).rewardId(getRewardId()).orderId(getOrderId());
return builder;
}
/**
* Class to build instances of {@link LoyaltyEventRedeemReward}.
*/
public static class Builder {
private String loyaltyProgramId;
private String rewardId;
private String orderId;
/**
* Initialization constructor.
* @param loyaltyProgramId String value for loyaltyProgramId.
*/
public Builder(String loyaltyProgramId) {
this.loyaltyProgramId = loyaltyProgramId;
}
/**
* Setter for loyaltyProgramId.
* @param loyaltyProgramId String value for loyaltyProgramId.
* @return Builder
*/
public Builder loyaltyProgramId(String loyaltyProgramId) {
this.loyaltyProgramId = loyaltyProgramId;
return this;
}
/**
* Setter for rewardId.
* @param rewardId String value for rewardId.
* @return Builder
*/
public Builder rewardId(String rewardId) {
this.rewardId = rewardId;
return this;
}
/**
* Setter for orderId.
* @param orderId String value for orderId.
* @return Builder
*/
public Builder orderId(String orderId) {
this.orderId = orderId;
return this;
}
/**
* Builds a new {@link LoyaltyEventRedeemReward} object using the set fields.
* @return {@link LoyaltyEventRedeemReward}
*/
public LoyaltyEventRedeemReward build() {
return new LoyaltyEventRedeemReward(loyaltyProgramId, rewardId, orderId);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy