com.bitpay.sdk.model.payout.RecipientWebhook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bitpay_sdk Show documentation
Show all versions of bitpay_sdk Show documentation
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;
}
}