UNPKG

@microsoft/msgraph-beta-sdk-contacts

Version:
26 lines 1.36 kB
import { type ContactsRequestBuilder } from './contacts/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 ContactsServiceClient extends BaseRequestBuilder<ContactsServiceClient> { /** * Provides operations to manage the collection of orgContact entities. */ get contacts(): ContactsRequestBuilder; } /** * Instantiates a new ContactsServiceClient 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 createContactsServiceClient(requestAdapter: RequestAdapter, backingStore?: BackingStoreFactory | undefined): ContactsServiceClient; /** * Metadata for all the navigation properties in the request builder. */ export declare const ContactsServiceClientNavigationMetadata: Record<Exclude<keyof ContactsServiceClient, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Uri template for the request builder. */ export declare const ContactsServiceClientUriTemplate = "{+baseurl}"; //# sourceMappingURL=contactsServiceClient.d.ts.map