Package ch.aaap.harvestclient.service
Interface EstimateService
public interface EstimateService
- 
Field Summary
Fields - 
Method Summary
Modifier and TypeMethodDescriptionretrofit2.Call<Estimate>retrofit2.Call<Void>delete(long estimateId) retrofit2.Call<Estimate>get(long estimateId) retrofit2.Call<PaginatedList>retrofit2.Call<Estimate>update(long estimateId, EstimateUpdateInfo updateInfo) retrofit2.Call<Estimate>updateItem(long estimateId, LineItemContainer updateInfo)  
- 
Field Details
- 
basePath
- See Also:
 
 - 
id
- See Also:
 
 - 
path
- See Also:
 
 
 - 
 - 
Method Details
- 
list
 - 
get
 - 
create
 - 
update
@PATCH("estimates/{id}") retrofit2.Call<Estimate> update(@Path("id") long estimateId, @Body EstimateUpdateInfo updateInfo)  - 
delete
 - 
updateItem
@PATCH("estimates/{id}") retrofit2.Call<Estimate> updateItem(@Path("id") long estimateId, @Body LineItemContainer updateInfo)  
 -