Skip to content
This repository has been archived by the owner on Jul 16, 2019. It is now read-only.

Estimates

ktoso edited this page May 7, 2011 · 1 revision

Estimates

Estimates are reaonly - you can not create them using the Kanbanery API (in version 1.2).

Query for estimates

List<Estimate> estimates = janbanery.estimates().all();

Estimate estimate = janbanery.estimates().byId(id);

Notice that Estimates are bound to a Project, that's why if you want to query Estimates from another project you may use this cool syntax:

janbanery.usingProject("janbaneryProject").estimates().all();

Be on your guard though, this will change the currentProject and may affect other queries - in fact all usingMethods are mutating the underlying instance - use them with caution.

Clone this wiki locally