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

com.bitpay.sdk.model.payout.RecipientStatus 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 Recipient status.
 *
 * @see REST API Payouts
 */
public class RecipientStatus {

    /**
     * The constant INVITED.
     */
    public static final String INVITED = "invited";
    /**
     * The constant UNVERIFIED.
     */
    public static final String UNVERIFIED = "unverified";
    /**
     * The constant VERIFIED.
     */
    public static final String VERIFIED = "verified";
    /**
     * The constant ACTIVE.
     */
    public static final String ACTIVE = "active";
    /**
     * The constant PAUSED.
     */
    public static final String PAUSED = "paused";
    /**
     * The constant REMOVED.
     */
    public static final String REMOVED = "removed";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy