public class Scale implements Request<Unit> {
private final RequestConfig config;
public Scale(String appName, String processType, int quantity) {
config = new RequestConfig().app(appName).with(Heroku.RequestKey.ProcessType, processType).with(Heroku.RequestKey.Quantity, String.valueOf(quantity));
}