import { type AdditionalDataHolder, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions'; export interface Connection 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 ConnectionType property */ connectionType?: number | null; /** * The main custom connected CDN domain */ mainCustomDomain?: string | null; /** * The total amount of bandwidth served by this zone this month */ monthlyBandwidthUsed?: number | null; /** * The total monthly charges incurred by this zone */ monthlyCharges?: number | null; /** * The ID of the connected pull zone */ pullZoneId?: number | null; /** * The name of the connected pull zone */ pullZoneName?: string | null; /** * The Tier property */ tier?: number | 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 {Connection} */ export declare function createConnectionFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @returns {Record void>} */ export declare function deserializeIntoConnection(connection?: Partial | undefined): Record void>; /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ export declare function serializeConnection(writer: SerializationWriter, connection?: Partial | undefined | null): void;