import { type AdditionalDataHolder, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions'; export interface AbuseCase extends AdditionalDataHolder, Parsable { /** * The ActualUrl property */ actualUrl?: string | null; /** * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. */ additionalData?: Record; /** * The DateCreated property */ dateCreated?: Date | null; /** * The DateUpdated property */ dateUpdated?: Date | null; /** * The Deadline property */ deadline?: Date | null; /** * The Id property */ id?: number | null; /** * The Message property */ message?: string | null; /** * The Path property */ path?: string | null; /** * The PullZoneId property */ pullZoneId?: number | null; /** * The PullZoneName property */ pullZoneName?: string | null; /** * The Status property */ status?: number | null; /** * The Urls property */ urls?: Url[] | 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 {AbuseCase} */ export declare function createAbuseCaseFromDiscriminatorValue(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 {Url} */ export declare function createUrlFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @returns {Record void>} */ export declare function deserializeIntoAbuseCase(abuseCase?: Partial | undefined): Record void>; /** * The deserialization information for the current model * @returns {Record void>} */ export declare function deserializeIntoUrl(url?: Partial | undefined): Record void>; /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ export declare function serializeAbuseCase(writer: SerializationWriter, abuseCase?: Partial | undefined | null): void; /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ export declare function serializeUrl(writer: SerializationWriter, url?: Partial | undefined | null): void; export interface Url 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 Status property */ status?: number | null; /** * The Url property */ url?: string | null; }