io.electrum.giftcard.api.model.ActivationResponse Maven / Gradle / Ivy
package io.electrum.giftcard.api.model;
import io.electrum.vas.Utils;
import io.electrum.vas.model.Transaction;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import javax.validation.constraints.NotNull;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Information about the result of processing the card activation.
*/
@ApiModel(description = "Information about the result of processing the card activation.")
public class ActivationResponse extends Transaction {
private GiftcardAmounts amounts = null;
private Card card = null;
private PosInfo posInfo = null;
private Product product = null;
public ActivationResponse amounts(GiftcardAmounts amounts) {
this.amounts = amounts;
return this;
}
/**
* Indicates the amount which was requested to be loaded onto the card during activation, the amount which was loaded
* and the balance of the gift card after activation.
*
* @return amounts
**/
@ApiModelProperty(value = "Indicates the amount which was requested to be loaded onto the card during activation, the amount which was loaded and the balance of the gift card after activation.")
@JsonProperty("amounts")
public GiftcardAmounts getAmounts() {
return amounts;
}
public void setAmounts(GiftcardAmounts amounts) {
this.amounts = amounts;
}
public ActivationResponse card(Card card) {
this.card = card;
return this;
}
/**
* Information about the gift card being activated.
*
* @return card
**/
@ApiModelProperty(required = true, value = "Information about the gift card being activated.")
@JsonProperty("card")
@NotNull
public Card getCard() {
return card;
}
public void setCard(Card card) {
this.card = card;
}
public ActivationResponse posInfo(PosInfo posInfo) {
this.posInfo = posInfo;
return this;
}
/**
* Information about the POS.
*
* @return posInfo
**/
@ApiModelProperty(value = "Information about the POS.")
@JsonProperty("posInfo")
public PosInfo getPosInfo() {
return posInfo;
}
public void setPosInfo(PosInfo posInfo) {
this.posInfo = posInfo;
}
public ActivationResponse product(Product product) {
this.product = product;
return this;
}
/**
* Information about the gift card product being activated.
*
* @return product
**/
@ApiModelProperty(required = true, value = "Information about the gift card product being activated.")
@JsonProperty("product")
@NotNull
public Product getProduct() {
return product;
}
public void setProduct(Product product) {
this.product = product;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ActivationResponse {\n");
sb.append(" id: ").append(Utils.toIndentedString(id)).append("\n");
sb.append(" time: ").append(Utils.toIndentedString(time)).append("\n");
sb.append(" originator: ").append(Utils.toIndentedString(originator)).append("\n");
sb.append(" client: ").append(Utils.toIndentedString(client)).append("\n");
sb.append(" settlementEntity: ").append(Utils.toIndentedString(settlementEntity)).append("\n");
sb.append(" receiver: ").append(Utils.toIndentedString(receiver)).append("\n");
sb.append(" thirdPartyIdentifiers: ").append(Utils.toIndentedString(thirdPartyIdentifiers)).append("\n");
sb.append(" amounts: ").append(Utils.toIndentedString(amounts)).append("\n");
sb.append(" card: ").append(Utils.toIndentedString(card)).append("\n");
sb.append(" posInfo: ").append(Utils.toIndentedString(posInfo)).append("\n");
sb.append(" product: ").append(Utils.toIndentedString(product)).append("\n");
sb.append(" slipData: ").append(Utils.toIndentedString(slipData)).append("\n");
sb.append("}");
return sb.toString();
}
}