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

com.groupbyinc.api.request.Cache Maven / Gradle / Ivy

The newest version!
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 - 2024 Weber Informatics LLC | Privacy Policy