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

com.mangopay.entities.subentities.InternationalAccountDetails Maven / Gradle / Ivy

There is a newer version: 2.42.0
Show newest version
package com.mangopay.entities.subentities;

import com.google.gson.annotations.SerializedName;
import com.mangopay.core.Dto;

public class InternationalAccountDetails extends Dto {

    @SerializedName("Address")
    private VirtualAccountAddress address;

    @SerializedName("Account")
    private InternationalAccount account;

    public InternationalAccountDetails(VirtualAccountAddress address, InternationalAccount account) {
        this.address = address;
        this.account = account;
    }

    public VirtualAccountAddress getAddress() {
        return address;
    }

    public InternationalAccountDetails setAddress(VirtualAccountAddress address) {
        this.address = address;
        return this;
    }

    public InternationalAccount getAccount() {
        return account;
    }

    public InternationalAccountDetails setAccount(InternationalAccount account) {
        this.account = account;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy