@microsoft/msgraph-beta-sdk-external
Version:
External fluent API for Microsoft Graph
42 lines • 1.98 kB
TypeScript
import { type YearTimePeriodDefinition } from '@microsoft/msgraph-beta-sdk/models/industryData/index.js';
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
* Provides operations to manage the year property of the microsoft.graph.industryData.inboundFlow entity.
*/
export interface YearRequestBuilder extends BaseRequestBuilder<YearRequestBuilder> {
/**
* The year associated to the data that this flow brings in.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<YearTimePeriodDefinition>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
*/
get(requestConfiguration?: RequestConfiguration<YearRequestBuilderGetQueryParameters> | undefined): Promise<YearTimePeriodDefinition | undefined>;
/**
* The year associated to the data that this flow brings in.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<YearRequestBuilderGetQueryParameters> | undefined): RequestInformation;
}
/**
* The year associated to the data that this flow brings in.
*/
export interface YearRequestBuilderGetQueryParameters {
/**
* Expand related entities
*/
expand?: string[];
/**
* Select properties to be returned
*/
select?: string[];
}
/**
* Uri template for the request builder.
*/
export declare const YearRequestBuilderUriTemplate = "{+baseurl}/external/industryData/inboundFlows/{inboundFlow%2Did}/year{?%24expand,%24select}";
/**
* Metadata for all the requests in the request builder.
*/
export declare const YearRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map