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

com.bitpay.sdk.model.bill.BillStatus 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.bill;

/**
 * The type Bill status.
 *
 * @see REST API Bills
 */
public class BillStatus {

    /**
     * The constant Draft.
     */
    public static final String Draft = "draft";
    /**
     * The constant Sent.
     */
    public static final String Sent = "sent";
    /**
     * The constant New.
     */
    public static final String New = "new";
    /**
     * The constant Paid.
     */
    public static final String Paid = "paid";
    /**
     * The constant Complete.
     */
    public static final String Complete = "complete";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy