Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

Commit

Permalink
Added dollar signs to and parameters.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Murdock committed Jul 6, 2015
1 parent aed6d53 commit fb54934
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,10 @@ public static ETResponse<ETCube> retrieve(ETClient client,
properties.add(property);
}
APIProperty page = new APIProperty();
page.setName("page");
page.setName("$page");
page.setValue("1");
APIProperty pageSize = new APIProperty();
pageSize.setName("pageSize");
pageSize.setName("$pageSize");
pageSize.setValue("2500");
properties.add(page);
properties.add(pageSize);
Expand Down

0 comments on commit fb54934

Please sign in to comment.