All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.electrum.cardaccount.model.ApplyCardFeesRequest Maven / Gradle / Ivy

The newest version!
/*
 * Electrum Gateway Card-Card API
 * The Electrum Gateway Card-Card API defines an interface for card and card management.
 *
 * OpenAPI spec version: 0.0.600
 * Contact: [email protected]
 *
 * NOTE: This class is auto generated by the swagger code generator program.
 * https://github.com/swagger-api/swagger-codegen.git
 * Do not edit the class manually.
 */

package io.electrum.cardaccount.model;

import javax.validation.constraints.NotNull;

import com.fasterxml.jackson.annotation.JsonProperty;

import io.electrum.vas.Utils;
import io.electrum.vas.model.Transaction;
import io.swagger.annotations.ApiModelProperty;

/**
 * ApplyCardFeesRequest
 */
public class ApplyCardFeesRequest extends Transaction {

   @JsonProperty("card")
   private Card card;

   @JsonProperty("fee")
   private Fee fee = null;

   @JsonProperty("issuerId")
   private String issuerId = null;

   public ApplyCardFeesRequest card(Card card) {
      this.card = card;
      return this;
   }

   /**
    * Get card
    * 
    * @return card
    **/
   @JsonProperty("card")
   @ApiModelProperty(required = true, value = "")
   @NotNull
   public Card getCard() {
      return card;
   }

   public void setCard(Card card) {
      this.card = card;
   }

   public ApplyCardFeesRequest fee(Fee fee) {
      this.fee = fee;
      return this;
   }

   /**
    * Get fee
    * 
    * @return fee
    **/
   @JsonProperty("fee")
   @ApiModelProperty(required = true, value = "")
   @NotNull
   public Fee getFee() {
      return fee;
   }

   public void setFee(Fee fee) {
      this.fee = fee;
   }

   public ApplyCardFeesRequest issuerId(String issuerId) {
      this.issuerId = issuerId;
      return this;
   }

   /**
    * The issuer id.
    * 
    * @return issuerId
    **/
   @JsonProperty("issuerId")
   @ApiModelProperty(required = true, value = "The issuer id.")
   @NotNull
   public String getIssuerId() {
      return issuerId;
   }

   public void setIssuerId(String issuerId) {
      this.issuerId = issuerId;
   }

   @Override
   public String toString() {
      StringBuilder sb = new StringBuilder();
      sb.append("class ApplyCardFeesRequest {\n");

      sb.append("    id: ").append(Utils.toIndentedString(id)).append("\n");
      sb.append("    card: ").append(Utils.toIndentedString(card)).append("\n");
      sb.append("    fee: ").append(Utils.toIndentedString(fee)).append("\n");
      sb.append("    issuerId: ").append(Utils.toIndentedString(issuerId)).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("    time: ").append(Utils.toIndentedString(time)).append("\n");
      sb.append("}");
      return sb.toString();
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy