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

com.bitpay.sdk.model.payout.PayoutGroupFailed Maven / Gradle / Ivy

Go to download

Full implementation of the BitPay Payment Gateway. This library implements BitPay's Cryptographically Secure RESTful API.

There is a newer version: 10.1.0
Show newest version
/*
 * Copyright (c) 2019 BitPay.
 * All rights reserved.
 */

package com.bitpay.sdk.model.payout;

/**
 * The object with information about not created/cancelled payout.
 *
 * @see REST API Create Payouts
 * @see REST API Cancel Payouts
 */
public class PayoutGroupFailed {

    public String errMessage;
    public String payoutId;
    public String payee;

    public PayoutGroupFailed() {
    }

    public PayoutGroupFailed(
        final String errMessage,
        final String payoutId,
        final String payee
    ) {
        this.errMessage = errMessage;
        this.payoutId = payoutId;
        this.payee = payee;
    }

    public String getErrMessage() {
        return this.errMessage;
    }

    public String getPayoutId() {
        return this.payoutId;
    }

    public String getPayee() {
        return this.payee;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy