com.groupbyinc.api.request.Cache Maven / Gradle / Ivy
package com.groupbyinc.api.request;
public class Cache {
private String customerId;
private String collection;
public Cache() {
}
public String getCustomerId() {
return customerId;
}
public Cache setCustomerId(String customerId) {
this.customerId = customerId;
return this;
}
public String getCollection() {
return collection;
}
public Cache setCollection(String collection) {
this.collection = collection;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy