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

com.bronto.api.model.ActivityPageSize Maven / Gradle / Ivy

The newest version!
package com.bronto.api.model;

public enum ActivityPageSize {
   SMALL(1000),
   LARGE(5000);

   private int size;

   ActivityPageSize(int size) {
      this.size = size;
   }

   public int getSize() {
      return size;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy