
com.paypal.api.payments.WebProfileList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-sdk Show documentation
Show all versions of rest-api-sdk Show documentation
PayPal SDK for integrating with the REST APIs
package com.paypal.api.payments;
import java.util.ArrayList;
import java.util.List;
public class WebProfileList extends ArrayList {
/**
*
*/
private static final long serialVersionUID = 1L;
private List webProfiles = null;
/**
* Default Constructor
*/
public WebProfileList() {
webProfiles = new ArrayList();
}
/**
* Setter for items
*/
public List setWebProfileList(List webProfiles) {
this.webProfiles = webProfiles;
return this.webProfiles;
}
/**
* Getter for items
*/
public List getWebProfileLists() {
return this.webProfiles;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy