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 {OptionalParameters_EnviromentalVariables} */ export declare function createOptionalParameters_EnviromentalVariablesFromDiscriminatorValue(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 {OptionalParameters} */ export declare function createOptionalParametersFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @returns {Record void>} */ export declare function deserializeIntoOptionalParameters(optionalParameters?: Partial | undefined): Record void>; /** * The deserialization information for the current model * @returns {Record void>} */ export declare function deserializeIntoOptionalParameters_EnviromentalVariables(optionalParameters_EnviromentalVariables?: Partial | undefined): Record void>; /** * The template for adding optional properties. */ export interface OptionalParameters extends AdditionalDataHolder, Parsable { /** * The Accelerated property */ accelerated?: boolean | null; /** * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. */ additionalData?: Record; /** * The Comment property */ comment?: string | null; /** * The Disabled property */ disabled?: boolean | null; /** * The EnviromentalVariables property */ enviromentalVariables?: OptionalParameters_EnviromentalVariables[] | null; /** * The Flags property */ flags?: number | null; /** * The GeolocationLatitude property */ geolocationLatitude?: number | null; /** * The GeolocationLongitude property */ geolocationLongitude?: number | null; /** * The LatencyZone property */ latencyZone?: string | null; /** * The MonitorType property */ monitorType?: number | null; /** * The Port property */ port?: number | null; /** * The Priority property */ priority?: number | null; /** * The PullZoneId property */ pullZoneId?: number | null; /** * The ScriptId property */ scriptId?: number | null; /** * The SmartRoutingType property */ smartRoutingType?: number | null; /** * The Tag property */ tag?: string | null; /** * The Ttl property */ ttl?: number | null; /** * The Weight property */ weight?: number | null; } export interface OptionalParameters_EnviromentalVariables 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 Name property */ name?: string | null; /** * The Value property */ value?: string | null; } /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ export declare function serializeOptionalParameters(writer: SerializationWriter, optionalParameters?: Partial | undefined | null): void; /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ export declare function serializeOptionalParameters_EnviromentalVariables(writer: SerializationWriter, optionalParameters_EnviromentalVariables?: Partial | undefined | null): void;