Examples of UniqueReportApi


Examples of com.dyn.client.v3.messaging.features.UniqueReportApi

        .put("opens", dyn.getOpensReportApi()).build();

    // unique report functionality
    for (Map.Entry<String, UniqueReportApi> entry : unique.entrySet()) {
      String name = entry.getKey();
      UniqueReportApi api = entry.getValue();

      System.out.println(name + " list unique : "
          + api.listUnique("2014-01-01", "2014-11-01", 0));
      System.out.println(name + " count unique : "
          + api.countUnique("2014-01-01", "2014-11-01"));
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.