@microsoft/msgraph-beta-sdk-communications
Version:
Communications fluent API for Microsoft Graph
26 lines • 1.44 kB
TypeScript
import { type CommunicationsRequestBuilder } from './communications/index.js';
import { type BackingStoreFactory, type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestAdapter } from '@microsoft/kiota-abstractions';
/**
* The main entry point of the SDK, exposes the configuration and the fluent API.
*/
export interface CommunicationsServiceClient extends BaseRequestBuilder<CommunicationsServiceClient> {
/**
* Provides operations to manage the cloudCommunications singleton.
*/
get communications(): CommunicationsRequestBuilder;
}
/**
* Instantiates a new CommunicationsServiceClient and sets the default values.
* @param backingStore The backing store to use for the models.
* @param requestAdapter The request adapter to use to execute the requests.
*/
export declare function createCommunicationsServiceClient(requestAdapter: RequestAdapter, backingStore?: BackingStoreFactory | undefined): CommunicationsServiceClient;
/**
* Metadata for all the navigation properties in the request builder.
*/
export declare const CommunicationsServiceClientNavigationMetadata: Record<Exclude<keyof CommunicationsServiceClient, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
* Uri template for the request builder.
*/
export declare const CommunicationsServiceClientUriTemplate = "{+baseurl}";
//# sourceMappingURL=communicationsServiceClient.d.ts.map