Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
// Template Source: BaseEntityRequestBuilder.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.requests;
import com.microsoft.graph.http.IRequestBuilder;
import com.microsoft.graph.core.ClientException;
import com.microsoft.graph.models.Channel;
import com.microsoft.graph.models.ProvisionChannelEmailResult;
import com.microsoft.graph.models.ChatMessage;
import java.util.Arrays;
import java.util.EnumSet;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;
import com.microsoft.graph.core.IBaseClient;
import com.microsoft.graph.http.BaseRequestBuilder;
import com.microsoft.graph.models.ChannelDoesUserHaveAccessParameterSet;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The class for the Channel Request Builder.
*/
public class ChannelRequestBuilder extends BaseRequestBuilder {
/**
* The request builder for the Channel
*
* @param requestUrl the request URL
* @param client the service client
* @param requestOptions the options for this request
*/
public ChannelRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
super(requestUrl, client, requestOptions);
}
/**
* Creates the request
*
* @param requestOptions the options for this request
* @return the ChannelRequest instance
*/
@Nonnull
public ChannelRequest buildRequest(@Nullable final com.microsoft.graph.options.Option... requestOptions) {
return buildRequest(getOptions(requestOptions));
}
/**
* Creates the request with specific requestOptions instead of the existing requestOptions
*
* @param requestOptions the options for this request
* @return the ChannelRequest instance
*/
@Nonnull
public ChannelRequest buildRequest(@Nonnull final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
return new com.microsoft.graph.requests.ChannelRequest(getRequestUrl(), getClient(), requestOptions);
}
/**
* Gets the request builder for DriveItem
*
* @return the DriveItemRequestBuilder instance
*/
@Nonnull
public com.microsoft.graph.requests.DriveItemRequestBuilder filesFolder() {
return new com.microsoft.graph.requests.DriveItemRequestBuilder(getRequestUrlWithAdditionalSegment("filesFolder"), getClient(), null);
}
/**
* Gets a request builder for the ConversationMember collection
*
* @return the collection request builder
*/
@Nonnull
public com.microsoft.graph.requests.ConversationMemberCollectionRequestBuilder members() {
return new com.microsoft.graph.requests.ConversationMemberCollectionRequestBuilder(getRequestUrlWithAdditionalSegment("members"), getClient(), null);
}
/**
* Gets a request builder for the ConversationMember item
*
* @return the request builder
* @param id the item identifier
*/
@Nonnull
public com.microsoft.graph.requests.ConversationMemberRequestBuilder members(@Nonnull final String id) {
return new com.microsoft.graph.requests.ConversationMemberRequestBuilder(getRequestUrlWithAdditionalSegment("members") + "/" + id, getClient(), null);
}
/**
* Gets a request builder for the ChatMessage collection
*
* @return the collection request builder
*/
@Nonnull
public com.microsoft.graph.requests.ChatMessageCollectionRequestBuilder messages() {
return new com.microsoft.graph.requests.ChatMessageCollectionRequestBuilder(getRequestUrlWithAdditionalSegment("messages"), getClient(), null);
}
/**
* Gets a request builder for the ChatMessage item
*
* @return the request builder
* @param id the item identifier
*/
@Nonnull
public com.microsoft.graph.requests.ChatMessageRequestBuilder messages(@Nonnull final String id) {
return new com.microsoft.graph.requests.ChatMessageRequestBuilder(getRequestUrlWithAdditionalSegment("messages") + "/" + id, getClient(), null);
}
/**
* Gets a request builder for the SharedWithChannelTeamInfo collection
*
* @return the collection request builder
*/
@Nonnull
public com.microsoft.graph.requests.SharedWithChannelTeamInfoCollectionRequestBuilder sharedWithTeams() {
return new com.microsoft.graph.requests.SharedWithChannelTeamInfoCollectionRequestBuilder(getRequestUrlWithAdditionalSegment("sharedWithTeams"), getClient(), null);
}
/**
* Gets a request builder for the SharedWithChannelTeamInfo item
*
* @return the request builder
* @param id the item identifier
*/
@Nonnull
public com.microsoft.graph.requests.SharedWithChannelTeamInfoRequestBuilder sharedWithTeams(@Nonnull final String id) {
return new com.microsoft.graph.requests.SharedWithChannelTeamInfoRequestBuilder(getRequestUrlWithAdditionalSegment("sharedWithTeams") + "/" + id, getClient(), null);
}
/**
* Gets a request builder for the TeamsTab collection
*
* @return the collection request builder
*/
@Nonnull
public com.microsoft.graph.requests.TeamsTabCollectionRequestBuilder tabs() {
return new com.microsoft.graph.requests.TeamsTabCollectionRequestBuilder(getRequestUrlWithAdditionalSegment("tabs"), getClient(), null);
}
/**
* Gets a request builder for the TeamsTab item
*
* @return the request builder
* @param id the item identifier
*/
@Nonnull
public com.microsoft.graph.requests.TeamsTabRequestBuilder tabs(@Nonnull final String id) {
return new com.microsoft.graph.requests.TeamsTabRequestBuilder(getRequestUrlWithAdditionalSegment("tabs") + "/" + id, getClient(), null);
}
/**
* Gets a builder to execute the method
* @return the request builder
*/
@Nonnull
public ChannelCompleteMigrationRequestBuilder completeMigration() {
return new ChannelCompleteMigrationRequestBuilder(getRequestUrlWithAdditionalSegment("microsoft.graph.completeMigration"), getClient(), null);
}
/**
* Gets a builder to execute the method
* @return the request builder
*/
@Nonnull
public ChannelProvisionEmailRequestBuilder provisionEmail() {
return new ChannelProvisionEmailRequestBuilder(getRequestUrlWithAdditionalSegment("microsoft.graph.provisionEmail"), getClient(), null);
}
/**
* Gets a builder to execute the method
* @return the request builder
*/
@Nonnull
public ChannelRemoveEmailRequestBuilder removeEmail() {
return new ChannelRemoveEmailRequestBuilder(getRequestUrlWithAdditionalSegment("microsoft.graph.removeEmail"), getClient(), null);
}
/**
* Gets a builder to execute the method
* @return the request builder
* @param parameters the parameters for the service method
*/
@Nonnull
public ChannelDoesUserHaveAccessRequestBuilder doesUserHaveAccess(@Nonnull final ChannelDoesUserHaveAccessParameterSet parameters) {
return new ChannelDoesUserHaveAccessRequestBuilder(getRequestUrlWithAdditionalSegment("microsoft.graph.doesUserHaveAccess"), getClient(), null, parameters);
}
}