public class TodoRequest extends com.microsoft.graph.http.BaseRequest<Todo>
| Constructor and Description |
|---|
TodoRequest(java.lang.String requestUrl,
com.microsoft.graph.core.IBaseClient<?> client,
java.util.List<? extends com.microsoft.graph.options.Option> requestOptions)
The request for the Todo
|
| Modifier and Type | Method and Description |
|---|---|
Todo |
delete()
Delete this item from the service
|
java.util.concurrent.CompletableFuture<Todo> |
deleteAsync()
Delete this item from the service
|
TodoRequest |
expand(java.lang.String value)
Sets the expand clause for the request
|
Todo |
get()
Gets the Todo from the service
|
java.util.concurrent.CompletableFuture<Todo> |
getAsync()
Gets the Todo from the service
|
Todo |
patch(Todo sourceTodo)
Patches this Todo with a source
|
java.util.concurrent.CompletableFuture<Todo> |
patchAsync(Todo sourceTodo)
Patches this Todo with a source
|
Todo |
post(Todo newTodo)
Creates a Todo with a new object
|
java.util.concurrent.CompletableFuture<Todo> |
postAsync(Todo newTodo)
Creates a Todo with a new object
|
Todo |
put(Todo newTodo)
Creates a Todo with a new object
|
java.util.concurrent.CompletableFuture<Todo> |
putAsync(Todo newTodo)
Creates a Todo with a new object
|
TodoRequest |
select(java.lang.String value)
Sets the select clause for the request
|
addCountOption, addExpandOption, addFilterOption, addFunctionOption, addHeader, addOrderByOption, addQueryOption, addSelectOption, addSkipOption, addSkipTokenOption, addTopOption, getClient, getDelay, getFunctionOptions, getHeaders, getHttpMethod, getHttpRequest, getMaxRedirects, getMaxRetries, getOptions, getQueryOptions, getRequestUrl, getResponseType, getShouldRedirect, getShouldRetry, getUseCaches, send, sendAsync, setDelay, setHttpMethod, setMaxRedirects, setMaxRetries, setShouldRedirect, setShouldRetry, setUseCaches, withHttpMethodpublic TodoRequest(@Nonnull
java.lang.String requestUrl,
@Nonnull
com.microsoft.graph.core.IBaseClient<?> client,
@Nullable
java.util.List<? extends com.microsoft.graph.options.Option> requestOptions)
requestUrl - the request URLclient - the service clientrequestOptions - the options for this request@Nonnull public java.util.concurrent.CompletableFuture<Todo> getAsync()
@Nullable public Todo get() throws com.microsoft.graph.core.ClientException
com.microsoft.graph.core.ClientException - this exception occurs if the request was unable to complete for any reason@Nonnull public java.util.concurrent.CompletableFuture<Todo> deleteAsync()
@Nullable public Todo delete() throws com.microsoft.graph.core.ClientException
com.microsoft.graph.core.ClientException - if there was an exception during the delete operation@Nonnull public java.util.concurrent.CompletableFuture<Todo> patchAsync(@Nonnull Todo sourceTodo)
sourceTodo - the source object with updates@Nullable public Todo patch(@Nonnull Todo sourceTodo) throws com.microsoft.graph.core.ClientException
sourceTodo - the source object with updatescom.microsoft.graph.core.ClientException - this exception occurs if the request was unable to complete for any reason@Nonnull public java.util.concurrent.CompletableFuture<Todo> postAsync(@Nonnull Todo newTodo)
newTodo - the new object to create@Nullable public Todo post(@Nonnull Todo newTodo) throws com.microsoft.graph.core.ClientException
newTodo - the new object to createcom.microsoft.graph.core.ClientException - this exception occurs if the request was unable to complete for any reason@Nonnull public java.util.concurrent.CompletableFuture<Todo> putAsync(@Nonnull Todo newTodo)
newTodo - the object to create/update@Nullable public Todo put(@Nonnull Todo newTodo) throws com.microsoft.graph.core.ClientException
newTodo - the object to create/updatecom.microsoft.graph.core.ClientException - this exception occurs if the request was unable to complete for any reason@Nonnull public TodoRequest select(@Nonnull java.lang.String value)
value - the select clause@Nonnull public TodoRequest expand(@Nonnull java.lang.String value)
value - the expand clause