UNPKG

@microsoft/msgraph-beta-sdk-groups

Version:
56 lines 2.7 kB
import { type DriveItem } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type ContentRequestBuilder } from './content/index.js'; import { type ContentStreamRequestBuilder } from './contentStream/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the filesFolder property of the microsoft.graph.channel entity. */ export interface FilesFolderRequestBuilder extends BaseRequestBuilder<FilesFolderRequestBuilder> { /** * Provides operations to manage the media for the group entity. */ get content(): ContentRequestBuilder; /** * Provides operations to manage the media for the group entity. */ get contentStream(): ContentStreamRequestBuilder; /** * Metadata for the location where the channel's files are stored. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<DriveItem>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<FilesFolderRequestBuilderGetQueryParameters> | undefined): Promise<DriveItem | undefined>; /** * Metadata for the location where the channel's files are stored. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<FilesFolderRequestBuilderGetQueryParameters> | undefined): RequestInformation; } /** * Metadata for the location where the channel's files are stored. */ export interface FilesFolderRequestBuilderGetQueryParameters { /** * Expand related entities */ expand?: string[]; /** * Select properties to be returned */ select?: string[]; } /** * Uri template for the request builder. */ export declare const FilesFolderRequestBuilderUriTemplate = "{+baseurl}/groups/{group%2Did}/team/primaryChannel/filesFolder{?%24expand,%24select}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const FilesFolderRequestBuilderNavigationMetadata: Record<Exclude<keyof FilesFolderRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const FilesFolderRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map