com.paypal.orders.StatusDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of checkout-sdk Show documentation
Show all versions of checkout-sdk Show documentation
PayPal SDK for integrating with the Checkout REST APIs
// This class was generated on Tue, 04 Sep 2018 12:15:14 PDT by version 0.1.0-dev+904328-dirty of Braintree SDK Generator
// StatusDetails.java
// @version 0.1.0-dev+904328-dirty
// @type object
// @data H4sIAAAAAAAC/6yPwUoDMRCG7z7FMOdFPO+tkCpFWYsWLyJkNLMmEJN1JkGC9N2lXViVXnv8v5+Z+eYbd21i7PGxUKkKhguFqNjhE0mg18gDfRx67PCW228wrG8SphJywh53nsHNo5BHKJ5BeKzJgR73XmKHKxFq87WrDh+Y3H2KDfuRovIBfNYg7BawlTyxlMCK/fPiqUVCej/1EybN6Z/lgk5d5wq+fPvr6kmP0W7Xg9kMNxaygL1ebe7Wxp7pk1Rj3L/sL34AAAD//w==
// DO NOT EDIT
package com.paypal.orders;
import java.util.Map;
import java.util.HashMap;
import java.util.List;
import java.util.ArrayList;
import com.braintreepayments.http.annotations.*;
/**
* The details of the refund status.
*/
@Model
public class StatusDetails {
// Required default constructor
public StatusDetails() {}
/**
* The reason why the refund has the `PENDING` or `FAILED` status.
*/
@SerializedName("reason")
private String reason;
public String reason() { return reason; }
public StatusDetails reason(String reason) {
this.reason = reason;
return this;
}
}