import { type ChannelRequestBuilder } from './channel/index.js'; import { type AdditionalDataHolder, type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type Parsable, type ParseNode, type RequestConfiguration, type RequestInformation, type RequestsMetadata, type SerializationWriter } from '@microsoft/kiota-abstractions'; export interface CheckGetResponse extends AdditionalDataHolder, Parsable { /** * Follows symantec versioning as laid out here: https://semver.org/. This number is the version of the application package. */ appVersion?: string | null; } /** * Builds and executes requests for operations under /Api/Update/Check */ export interface CheckRequestBuilder extends BaseRequestBuilder { /** * The Channel property */ get channel(): ChannelRequestBuilder; /** * Checks with data gateway and compares the reported version to the version that is locally installed. If there is a difference, a new update is marked as available. Always returns the latest version available on data gateway, even if that version is installed locally.This endpoint requires the `Update.Read`, `Update.ReadWrite`, or the `Everything.ReadWrite` scope (permission). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} */ get(requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Checks with data gateway and compares the reported version to the version that is locally installed. If there is a difference, a new update is marked as available. Always returns the latest version available on data gateway, even if that version is installed locally.This endpoint requires the `Update.Read`, `Update.ReadWrite`, or the `Everything.ReadWrite` scope (permission). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Creates a new instance of the appropriate class based on discriminator value * @param parseNode The parse node to use to read the discriminator value and create the object * @returns {CheckGetResponse} */ export declare function createCheckGetResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @param CheckGetResponse The instance to deserialize into. * @returns {Record void>} */ export declare function deserializeIntoCheckGetResponse(checkGetResponse?: Partial | undefined): Record void>; /** * Serializes information the current object * @param CheckGetResponse The instance to serialize from. * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param writer Serialization writer to use to serialize this model */ export declare function serializeCheckGetResponse(writer: SerializationWriter, checkGetResponse?: Partial | undefined | null, isSerializingDerivedType?: boolean): void; /** * Uri template for the request builder. */ export declare const CheckRequestBuilderUriTemplate = "{+baseurl}/Api/Update/Check"; /** * Metadata for all the navigation properties in the request builder. */ export declare const CheckRequestBuilderNavigationMetadata: Record, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const CheckRequestBuilderRequestsMetadata: RequestsMetadata;