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

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

Go to download

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

The newest version!
/*
 * Copyright (c) 2019 BitPay.
 * All rights reserved.
 */

package com.bitpay.sdk.model.payout;

/**
 * The type Payout status.
 *
 * @see REST API Payouts
 */
public class PayoutStatus {
    /**
     * The constant New.
     */
    public static final String New = "new";
    /**
     * The constant Funded.
     */
    public static final String Funded = "funded";
    /**
     * The constant Processing.
     */
    public static final String Processing = "processing";
    /**
     * The constant Complete.
     */
    public static final String Complete = "complete";
    /**
     * The constant Failed.
     */
    public static final String Failed = "failed";
    /**
     * The constant Cancelled.
     */
    public static final String Cancelled = "cancelled";
    /**
     * The constant Paid.
     */
    public static final String Paid = "paid";
    /**
     * The constant Unpaid.
     */
    public static final String Unpaid = "unpaid";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy