import { type AdditionalDataHolder, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions'; /** * 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 {Resolutions} */ export declare function createResolutionsFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * 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 {VideoResolutionsInfoData} */ export declare function createVideoResolutionsInfoDataFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * 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 {VideoResolutionsInfoResult_data} */ export declare function createVideoResolutionsInfoResult_dataFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * 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 {VideoResolutionsInfoResult} */ export declare function createVideoResolutionsInfoResultFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @returns {Record void>} */ export declare function deserializeIntoResolutions(resolutions?: Partial | undefined): Record void>; /** * The deserialization information for the current model * @returns {Record void>} */ export declare function deserializeIntoVideoResolutionsInfoData(videoResolutionsInfoData?: Partial | undefined): Record void>; /** * The deserialization information for the current model * @returns {Record void>} */ export declare function deserializeIntoVideoResolutionsInfoResult(videoResolutionsInfoResult?: Partial | undefined): Record void>; /** * The deserialization information for the current model * @returns {Record void>} */ export declare function deserializeIntoVideoResolutionsInfoResult_data(videoResolutionsInfoResult_data?: Partial | undefined): Record void>; export interface Resolutions extends AdditionalDataHolder, Parsable { /** * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. */ additionalData?: Record; /** * The path property */ path?: string | null; /** * The resolution property */ resolution?: string | null; } /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ export declare function serializeResolutions(writer: SerializationWriter, resolutions?: Partial | undefined | null): void; /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ export declare function serializeVideoResolutionsInfoData(writer: SerializationWriter, videoResolutionsInfoData?: Partial | undefined | null): void; /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ export declare function serializeVideoResolutionsInfoResult(writer: SerializationWriter, videoResolutionsInfoResult?: Partial | undefined | null): void; /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ export declare function serializeVideoResolutionsInfoResult_data(writer: SerializationWriter, videoResolutionsInfoResult_data?: Partial | undefined | null): void; export interface VideoResolutionsInfoData extends AdditionalDataHolder, Parsable { /** * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. */ additionalData?: Record; /** * The availableResolutions property */ availableResolutions?: string[] | null; /** * The configuredResolutions property */ configuredResolutions?: string[] | null; /** * The hasOriginal property */ hasOriginal?: boolean | null; /** * The mp4Resolutions property */ mp4Resolutions?: Resolutions | null; /** * The playlistResolutions property */ playlistResolutions?: Resolutions | null; /** * The storageResolutions property */ storageResolutions?: Resolutions | null; /** * The videoId property */ videoId?: string | null; /** * The videoLibraryId property */ videoLibraryId?: number | null; } export interface VideoResolutionsInfoResult extends AdditionalDataHolder, Parsable { /** * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. */ additionalData?: Record; /** * The resolutions info. */ data?: VideoResolutionsInfoResult_data | null; /** * Response message description */ message?: string | null; /** * The response status code */ statusCode?: number | null; /** * Determines if the request was successful */ success?: boolean | null; } /** * The resolutions info. */ export interface VideoResolutionsInfoResult_data extends Parsable, VideoResolutionsInfoData { }