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

com.unzer.payment.communication.json.ApiPayout Maven / Gradle / Ivy

package com.unzer.payment.communication.json;

public class ApiPayout extends ApiInitPayment implements ApiObject {

    public ApiPayout() {
        super();
    }

    public ApiPayout(ApiInitPayment json) {
        super();
        this.setAmount(json.getAmount());
        this.setCard3ds(json.getCard3ds());
        this.setCurrency(json.getCurrency());
        this.setOrderId(json.getOrderId());
        this.setResources(json.getResources());
        this.setReturnUrl(json.getReturnUrl());
        this.setDate(json.getDate());
        this.setError(json.getError());
        this.setPending(json.getPending());
        this.setSuccess(json.getSuccess());
        this.setMessage(json.getMessage());
        this.setProcessing(json.getProcessing());
        this.setRedirectUrl(json.getRedirectUrl());
        this.setId(json.getId());
        this.setPaymentReference(json.getPaymentReference());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy