import { type AdditionalDataHolder, type Guid, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions'; /** * Channel configuration for the SHIELD update service. */ export interface Channel extends AdditionalDataHolder, Parsable { /** * Version number of the latest update available to the channel. */ latest?: string | null; /** * (Unique) Name of the update channel that this configuration belongs to. */ name?: string | null; /** * Version number of the number that is being replaced via ring deployment, available to all rings at the minimum. */ previous?: string | null; } /** * Object returning the value of the version of the latest application package available. */ export interface Check extends AdditionalDataHolder, Parsable { /** * Latest found version of the application package. */ updateVersion?: string | null; } /** * 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 {Channel} */ export declare function createChannelFromDiscriminatorValue(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 {Check} */ export declare function createCheckFromDiscriminatorValue(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 {Tenant} */ export declare function createTenantFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @param Channel The instance to deserialize into. * @returns {Record void>} */ export declare function deserializeIntoChannel(channel?: Partial | undefined): Record void>; /** * The deserialization information for the current model * @param Check The instance to deserialize into. * @returns {Record void>} */ export declare function deserializeIntoCheck(check?: Partial | undefined): Record void>; /** * The deserialization information for the current model * @param Tenant The instance to deserialize into. * @returns {Record void>} */ export declare function deserializeIntoTenant(tenant?: Partial | undefined): Record void>; /** * Serializes information the current object * @param Channel 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 serializeChannel(writer: SerializationWriter, channel?: Partial | undefined | null, isSerializingDerivedType?: boolean): void; /** * Serializes information the current object * @param Check 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 serializeCheck(writer: SerializationWriter, check?: Partial | undefined | null, isSerializingDerivedType?: boolean): void; /** * Serializes information the current object * @param isSerializingDerivedType A boolean indicating whether the serialization is for a derived type. * @param Tenant The instance to serialize from. * @param writer Serialization writer to use to serialize this model */ export declare function serializeTenant(writer: SerializationWriter, tenant?: Partial | undefined | null, isSerializingDerivedType?: boolean): void; /** * Object containing tenant update configuration. */ export interface Tenant extends AdditionalDataHolder, Parsable { /** * Flag that indicates if the current tenant is allowed to request alpha builds (`true`) or not (`false`). */ alphaEnabled?: boolean | null; /** * Name of the deploy channel. */ channel?: string | null; /** * Ring number that the client belongs to for the current channel. */ ring?: number | null; /** * Tenant ID that the configuration belongs to. */ tenantId?: Guid | null; }