UNPKG

@shi-corp/sdk-data-gateway

Version:

SDK client used to interface with the SHI Data Gateway service.

20 lines (19 loc) 853 B
import { type ShieldRequestBuilder } from './shield/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /Api/Entitlement */ export interface EntitlementRequestBuilder extends BaseRequestBuilder<EntitlementRequestBuilder> { /** * The Shield property */ get shield(): ShieldRequestBuilder; } /** * Uri template for the request builder. */ export declare const EntitlementRequestBuilderUriTemplate = "{+baseurl}/Api/Entitlement"; /** * Metadata for all the navigation properties in the request builder. */ export declare const EntitlementRequestBuilderNavigationMetadata: Record<Exclude<keyof EntitlementRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;