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

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

There is a newer version: 3.2.0
Show newest version
package com.groupbyinc.api.request;

/**
 * Created by osman on 15/09/14.
 */
public class RestrictNavigation {

  private String name;
  private int count;

  public String getName() {
    return name;
  }

  public RestrictNavigation setName(String name) {
    this.name = name;
    return this;
  }

  public int getCount() {
    return count;
  }

  public RestrictNavigation setCount(int count) {
    this.count = count;
    return this;
  }

  @Override
  public String toString() {
    return "[" + name + ", " + count + "]";
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy