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

com.mx.path.model.mdx.model.payout.Recipient Maven / Gradle / Ivy

There is a newer version: 16.0.0
Show newest version
package com.mx.path.model.mdx.model.payout;

import com.mx.path.model.mdx.model.MdxBase;
import com.mx.path.model.mdx.model.MdxList;

public final class Recipient extends MdxBase {

  private String firstName;
  private String id;
  private String lastName;
  private String primaryPayoutMethodId;
  private MdxList payoutMethods;

  public String getFirstName() {
    return firstName;
  }

  public void setFirstName(String newFirstName) {
    this.firstName = newFirstName;
  }

  public String getId() {
    return id;
  }

  public void setId(String newId) {
    this.id = newId;
  }

  public String getLastName() {
    return lastName;
  }

  public void setLastName(String newLastName) {
    this.lastName = newLastName;
  }

  public String getPrimaryPayoutMethodId() {
    return primaryPayoutMethodId;
  }

  public void setPrimaryPayoutMethodId(String newPrimaryPayoutMethodId) {
    this.primaryPayoutMethodId = newPrimaryPayoutMethodId;
  }

  public MdxList getPayoutMethods() {
    return payoutMethods;
  }

  public void setPayoutMethods(MdxList payoutMethods) {
    this.payoutMethods = payoutMethods;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy