Class TodoRequest

java.lang.Object
com.microsoft.graph.http.BaseRequest<Todo>
com.microsoft.graph.requests.TodoRequest
All Implemented Interfaces:
com.microsoft.graph.http.IHttpRequest

public class TodoRequest extends com.microsoft.graph.http.BaseRequest<Todo>
The class for the Todo Request.
  • Field Summary

    Fields inherited from class com.microsoft.graph.http.BaseRequest

    functionOptions, queryOptions, REQUEST_STATS_HEADER_VALUE_FORMAT_STRING
  • Constructor Summary

    Constructors
    Constructor
    Description
    TodoRequest(String requestUrl, com.microsoft.graph.core.IBaseClient<?> client, List<? extends com.microsoft.graph.options.Option> requestOptions)
    The request for the Todo
  • Method Summary

    Modifier and Type
    Method
    Description
    Delete this item from the service
    Delete this item from the service
    expand(String value)
    Sets the expand clause for the request
    get()
    Gets the Todo from the service
    Gets the Todo from the service
    patch(Todo sourceTodo)
    Patches this Todo with a source
    patchAsync(Todo sourceTodo)
    Patches this Todo with a source
    post(Todo newTodo)
    Creates a Todo with a new object
    postAsync(Todo newTodo)
    Creates a Todo with a new object
    put(Todo newTodo)
    Creates a Todo with a new object
    putAsync(Todo newTodo)
    Creates a Todo with a new object
    select(String value)
    Sets the select clause for the request

    Methods inherited from class com.microsoft.graph.http.BaseRequest

    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, withHttpMethod

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface com.microsoft.graph.http.IHttpRequest

    getHttpRequest
  • Constructor Details

    • TodoRequest

      public TodoRequest(@Nonnull String requestUrl, @Nonnull com.microsoft.graph.core.IBaseClient<?> client, @Nullable List<? extends com.microsoft.graph.options.Option> requestOptions)
      The request for the Todo
      Parameters:
      requestUrl - the request URL
      client - the service client
      requestOptions - the options for this request
  • Method Details

    • getAsync

      @Nonnull public CompletableFuture<Todo> getAsync()
      Gets the Todo from the service
      Returns:
      a future with the result
    • get

      @Nullable public Todo get() throws com.microsoft.graph.core.ClientException
      Gets the Todo from the service
      Returns:
      the Todo from the request
      Throws:
      com.microsoft.graph.core.ClientException - this exception occurs if the request was unable to complete for any reason
    • deleteAsync

      @Nonnull public CompletableFuture<Todo> deleteAsync()
      Delete this item from the service
      Returns:
      a future with the deletion result
    • delete

      @Nullable public Todo delete() throws com.microsoft.graph.core.ClientException
      Delete this item from the service
      Returns:
      the resulting response if the service returns anything on deletion
      Throws:
      com.microsoft.graph.core.ClientException - if there was an exception during the delete operation
    • patchAsync

      @Nonnull public CompletableFuture<Todo> patchAsync(@Nonnull Todo sourceTodo)
      Patches this Todo with a source
      Parameters:
      sourceTodo - the source object with updates
      Returns:
      a future with the result
    • patch

      @Nullable public Todo patch(@Nonnull Todo sourceTodo) throws com.microsoft.graph.core.ClientException
      Patches this Todo with a source
      Parameters:
      sourceTodo - the source object with updates
      Returns:
      the updated Todo
      Throws:
      com.microsoft.graph.core.ClientException - this exception occurs if the request was unable to complete for any reason
    • postAsync

      @Nonnull public CompletableFuture<Todo> postAsync(@Nonnull Todo newTodo)
      Creates a Todo with a new object
      Parameters:
      newTodo - the new object to create
      Returns:
      a future with the result
    • post

      @Nullable public Todo post(@Nonnull Todo newTodo) throws com.microsoft.graph.core.ClientException
      Creates a Todo with a new object
      Parameters:
      newTodo - the new object to create
      Returns:
      the created Todo
      Throws:
      com.microsoft.graph.core.ClientException - this exception occurs if the request was unable to complete for any reason
    • putAsync

      @Nonnull public CompletableFuture<Todo> putAsync(@Nonnull Todo newTodo)
      Creates a Todo with a new object
      Parameters:
      newTodo - the object to create/update
      Returns:
      a future with the result
    • put

      @Nullable public Todo put(@Nonnull Todo newTodo) throws com.microsoft.graph.core.ClientException
      Creates a Todo with a new object
      Parameters:
      newTodo - the object to create/update
      Returns:
      the created Todo
      Throws:
      com.microsoft.graph.core.ClientException - this exception occurs if the request was unable to complete for any reason
    • select

      @Nonnull public TodoRequest select(@Nonnull String value)
      Sets the select clause for the request
      Parameters:
      value - the select clause
      Returns:
      the updated request
    • expand

      @Nonnull public TodoRequest expand(@Nonnull String value)
      Sets the expand clause for the request
      Parameters:
      value - the expand clause
      Returns:
      the updated request