public interface IItemAnalyticsRequest extends IHttpRequest
Modifier and Type | Method and Description |
---|---|
void |
delete()
Delete this item from the service
|
void |
delete(ICallback<ItemAnalytics> callback)
Delete this item from the service
|
IItemAnalyticsRequest |
expand(java.lang.String value)
Sets the expand clause for the request
|
ItemAnalytics |
get()
Gets the ItemAnalytics from the service
|
void |
get(ICallback<ItemAnalytics> callback)
Gets the ItemAnalytics from the service
|
ItemAnalytics |
patch(ItemAnalytics sourceItemAnalytics)
Patches this ItemAnalytics with a source
|
void |
patch(ItemAnalytics sourceItemAnalytics,
ICallback<ItemAnalytics> callback)
Patches this ItemAnalytics with a source
|
ItemAnalytics |
post(ItemAnalytics newItemAnalytics)
Posts a ItemAnalytics with a new object
|
void |
post(ItemAnalytics newItemAnalytics,
ICallback<ItemAnalytics> callback)
Posts a ItemAnalytics with a new object
|
IItemAnalyticsRequest |
select(java.lang.String value)
Sets the select clause for the request
|
addHeader, getDelay, getHeaders, getHttpMethod, getMaxRedirects, getMaxRetries, getOptions, getRequestUrl, getShouldRedirect, getShouldRetry, getUseCaches, setDelay, setMaxRedirects, setMaxRetries, setShouldRedirect, setShouldRetry, setUseCaches
void get(ICallback<ItemAnalytics> callback)
callback
- the callback to be called after success or failureItemAnalytics get() throws ClientException
ClientException
- this exception occurs if the request was unable to complete for any reasonvoid delete(ICallback<ItemAnalytics> callback)
callback
- the callback when the deletion action has completedvoid delete() throws ClientException
ClientException
- if there was an exception during the delete operationvoid patch(ItemAnalytics sourceItemAnalytics, ICallback<ItemAnalytics> callback)
sourceItemAnalytics
- the source object with updatescallback
- the callback to be called after success or failureItemAnalytics patch(ItemAnalytics sourceItemAnalytics) throws ClientException
sourceItemAnalytics
- the source object with updatesClientException
- this exception occurs if the request was unable to complete for any reasonvoid post(ItemAnalytics newItemAnalytics, ICallback<ItemAnalytics> callback)
newItemAnalytics
- the new object to createcallback
- the callback to be called after success or failureItemAnalytics post(ItemAnalytics newItemAnalytics) throws ClientException
newItemAnalytics
- the new object to createClientException
- this exception occurs if the request was unable to complete for any reasonIItemAnalyticsRequest select(java.lang.String value)
value
- the select clauseIItemAnalyticsRequest expand(java.lang.String value)
value
- the expand clause