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

com.paypal.orders.SellerProtection Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
// This class was generated on Thu, 16 May 2019 09:53:44 PDT by version 0.1.0-dev+8fcb5f of Braintree SDK Generator
// SellerProtection.java
// @version 0.1.0-dev+8fcb5f
// @type object
// @data H4sIAAAAAAAC/9SSwYrUQBCG7z5F0SeFOPHkIbcFEUTUQRcvy7LUJH8mDT3dbVVlQyP77tIZ2dlxFPHo9a8uqr6v67u7Lhmuc4oQIHdZkqE3n6Jr3FcWz7uAj3z405P3KD+rrnFvoL34vJY6dz2BAu4RKI10aqI0jhAMxEoDRh8x0K7QzZbLlgN9WYfQ9vR+TEIfIP3E0fT2+WSWtWvbZVk2mUvmsOnToZ21XbDjnLU95Nwq+lm8lfa49MvT/Bcb17grES5H8leN+wwePsVQXDdyUNTg2+wFw2OwlZQh5qGuuzk5M/Fxfylq8Jpnw13Phn2S2vXU1G/L5+6uInFdsarrUxx8zZVsYiMWUJ/uV4fVjU0gE47KK98veK//FS/OITw0f2VUY5vPuR6jc5Z3cfAVVWmZYBMuNiavhOD3fhewEh3/7MnNbOhtEvJxTHLgGjSkwH90M6vU24dnPwAAAP//
// 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.paypal.http.annotations.*;
/**
 * The level of protection offered as defined by [PayPal Seller Protection for Merchants](https://www.paypal.com/us/webapps/mpp/security/seller-protection).
 */
@Model
public class SellerProtection {

    // Required default constructor
    public SellerProtection() {}

	/**
	* An array of conditions that are covered for the transaction.
	*/
	@SerializedName(value = "dispute_categories", listClass = String.class)
	private List disputeCategories;

	public List disputeCategories() { return disputeCategories; }

	public SellerProtection disputeCategories(List disputeCategories) {
	    this.disputeCategories = disputeCategories;
	    return this;
	}

	/**
	* Indicates whether the transaction is eligible for seller protection. For information, see [PayPal Seller Protection for Merchants](https://www.paypal.com/us/webapps/mpp/security/seller-protection).
	*/
	@SerializedName("status")
	private String status;

	public String status() { return status; }

	public SellerProtection status(String status) {
	    this.status = status;
	    return this;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy