com.ebay.sell.account.policies.models.FulfillmentPolicy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebay-sdk Show documentation
Show all versions of ebay-sdk Show documentation
Java SDK for eBay REST APIs
package com.ebay.sell.account.policies.models;
import java.util.LinkedList;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class FulfillmentPolicy {
private String name;
private String marketplaceId;
private List categoryTypes = new LinkedList<>();
private String fulfillmentPolicyId;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getMarketplaceId() {
return marketplaceId;
}
public void setMarketplaceId(String marketplaceId) {
this.marketplaceId = marketplaceId;
}
public List getCategoryTypes() {
return categoryTypes;
}
public void setCategoryTypes(List categoryTypes) {
this.categoryTypes = categoryTypes;
}
public String getFulfillmentPolicyId() {
return fulfillmentPolicyId;
}
public void setFulfillmentPolicyId(String fulfillmentPolicyId) {
this.fulfillmentPolicyId = fulfillmentPolicyId;
}
}