All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.graph.securitynamespace.requests.ArticleWithReferenceRequest Maven / Gradle / Ivy

// Template Source: BaseEntityWithReferenceRequest.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All Rights Reserved.  Licensed under the MIT License.  See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.security.requests;

import com.microsoft.graph.http.IRequestBuilder;
import com.microsoft.graph.core.ClientException;
import com.microsoft.graph.security.models.Article;
import java.util.Arrays;
import java.util.EnumSet;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;

import com.microsoft.graph.options.QueryOption;
import com.microsoft.graph.http.BaseWithReferenceRequest;
import com.microsoft.graph.http.HttpMethod;
import com.microsoft.graph.core.IBaseClient;
import com.microsoft.graph.serializer.IJsonBackedObject;

// **NOTE** This file was generated by a tool and any changes will be overwritten.

/**
 * The class for the Article With Reference Request.
 */
public class ArticleWithReferenceRequest extends BaseWithReferenceRequest
{ /** * The request for the Article * * @param requestUrl the request URL * @param client the service client * @param requestOptions the options for this request */ public ArticleWithReferenceRequest(@Nonnull final String requestUrl, @Nonnull final IBaseClient client, @Nullable final java.util.List requestOptions) { super(requestUrl, client, requestOptions, Article.class); } /** * Sets the select clause for the request * * @param value the select clause * @return the updated request */ @Nonnull public ArticleWithReferenceRequest select(@Nonnull final String value) { addSelectOption(value); return this; } /** * Sets the expand clause for the request * * @param value the expand clause * @return the updated request */ @Nonnull public ArticleWithReferenceRequest expand(@Nonnull final String value) { addExpandOption(value); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy