UNPKG

@microsoft/msgraph-beta-sdk-contracts

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