@microsoft/msgraph-beta-sdk-privacy
Version:
Privacy fluent API for Microsoft Graph
26 lines • 1.33 kB
TypeScript
import { type PrivacyRequestBuilder } from './privacy/index.js';
import { type BackingStoreFactory, type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestAdapter } from '@microsoft/kiota-abstractions';
/**
* Instantiates a new PrivacyServiceClient 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 createPrivacyServiceClient(requestAdapter: RequestAdapter, backingStore?: BackingStoreFactory | undefined): PrivacyServiceClient;
/**
* The main entry point of the SDK, exposes the configuration and the fluent API.
*/
export interface PrivacyServiceClient extends BaseRequestBuilder<PrivacyServiceClient> {
/**
* Provides operations to manage the privacy singleton.
*/
get privacy(): PrivacyRequestBuilder;
}
/**
* Metadata for all the navigation properties in the request builder.
*/
export declare const PrivacyServiceClientNavigationMetadata: Record<Exclude<keyof PrivacyServiceClient, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
* Uri template for the request builder.
*/
export declare const PrivacyServiceClientUriTemplate = "{+baseurl}";
//# sourceMappingURL=privacyServiceClient.d.ts.map