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

com.braintreegateway.Adjustment Maven / Gradle / Ivy

There is a newer version: 3.32.0_1
Show newest version
package com.braintreegateway;

import java.math.BigDecimal;
import java.util.Calendar;

import com.braintreegateway.util.EnumUtils;
import com.braintreegateway.util.NodeWrapper;

public class Adjustment {
  private Calendar projectedDisbursementDate;
  private Calendar actualDisbursementDate;
  private BigDecimal amount;
  private KIND kind;

  public enum KIND {
    REFUND,
    DISPUTE,
    UNRECOGNIZED;
  }
  
  public Adjustment(NodeWrapper node) {
    amount = node.findBigDecimal("amount");
    projectedDisbursementDate = node.findDateTime("projected_disbursement_date");
    actualDisbursementDate = node.findDateTime("actual_disbursement_date");
    kind = EnumUtils.findByName(Adjustment.KIND.class, node.findString("kind"), KIND.UNRECOGNIZED);
  }

  public Calendar getProjectedDisbursementDate() {
    return projectedDisbursementDate;
  }

  public Calendar getActualDisbursementDate() {
    return actualDisbursementDate;
  }

  public BigDecimal getAmount() {
    return amount;
  }

  public KIND getKind() {
    return kind;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy