import { type AdditionalDataHolder, type ApiError, 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 {StructuredBadRequestResponse} */ export declare function createStructuredBadRequestResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @returns {Record void>} */ export declare function deserializeIntoStructuredBadRequestResponse(structuredBadRequestResponse?: Partial | undefined): Record void>; /** * Serializes information the current object * @param writer Serialization writer to use to serialize this model */ export declare function serializeStructuredBadRequestResponse(writer: SerializationWriter, structuredBadRequestResponse?: Partial | undefined | null): void; /** * The server could not understand the request due to invalid syntax. */ export interface StructuredBadRequestResponse extends AdditionalDataHolder, ApiError, Parsable { /** * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well. */ additionalData?: Record; /** * The ErrorKey property */ errorKey?: string | null; /** * The Field property */ field?: string | null; /** * The Message property */ messageEscaped?: string | null; }