Skip to content

Commit

Permalink
Add inclusive and exclusive to API fields documentation (#502)
Browse files Browse the repository at this point in the history
  • Loading branch information
tgianos committed May 11, 2017
1 parent a4bf9eb commit 3f93a8c
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -364,19 +364,19 @@ final class Snippets {
.optional(),
RequestDocumentation
.parameterWithName("minStarted")
.description("The minimum started time of the job in milliseconds since epoch.")
.description("The minimum started time of the job in milliseconds since epoch. (inclusive)")
.optional(),
RequestDocumentation
.parameterWithName("maxStarted")
.description("The maximum started time of the job in milliseconds since epoch.")
.description("The maximum started time of the job in milliseconds since epoch. (exclusive)")
.optional(),
RequestDocumentation
.parameterWithName("minFinished")
.description("The minimum finished time of the job in milliseconds since epoch.")
.description("The minimum finished time of the job in milliseconds since epoch. (inclusive)")
.optional(),
RequestDocumentation
.parameterWithName("maxFinished")
.description("The maximum finished time of the job in milliseconds since epoch.")
.description("The maximum finished time of the job in milliseconds since epoch. (exclusive)")
.optional()
)
);
Expand Down

0 comments on commit 3f93a8c

Please sign in to comment.