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

com.bitpay.sdk.model.payout.RecipientWebhook 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;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

/**
 * The type Recipient webhook.
 *
 * @see Recipient Webhook
 */
@JsonIgnoreProperties(ignoreUnknown = true)
class RecipientWebhook {

    protected String email;
    protected String label;
    protected String status;
    protected String id;
    protected String shopperId;

    public String getEmail() {
        return this.email;
    }

    public void setEmail(String email) {
        this.email = email;
    }

    public String getLabel() {
        return this.label;
    }

    public void setLabel(String label) {
        this.label = label;
    }

    public String getStatus() {
        return this.status;
    }

    public void setStatus(String status) {
        this.status = status;
    }

    public String getId() {
        return this.id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getShopperId() {
        return this.shopperId;
    }

    public void setShopperId(String shopperId) {
        this.shopperId = shopperId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy