import { type AdditionalDataHolder, type Guid, type Parsable, type ParseNode, type SerializationWriter } from '@microsoft/kiota-abstractions'; /** * Metadata that describes the execution session (run) that is used to tie/relate all of the architecture report together. */ export interface CorrelationRecord extends AdditionalDataHolder, Parsable { /** * The user principal name used to authenticate into the tenant being audited. */ auditTenantAccount?: string | null; /** * Unique Identifier that represents a single run of architectural analysis. This record is used to identify which architecture report records should be grouped together. */ correlationId?: Guid | null; /** * Timestamp when the record was created. */ createdAt?: Date | null; /** * User account used to store/report the architecture report to the SHI Lab cloud service. */ reportTenantAccount?: string | null; /** * Unique identifier of the customer tenant that the report was created for. */ tenantId?: Guid | null; /** * Timestamp when the record was updated last. */ updatedAt?: Date | 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 {CorrelationRecord} */ export declare function createCorrelationRecordFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record void>); /** * The deserialization information for the current model * @param CorrelationRecord The instance to deserialize into. * @returns {Record void>} */ export declare function deserializeIntoCorrelationRecord(correlationRecord?: Partial | undefined): Record void>; /** * Serializes information the current object * @param CorrelationRecord 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 serializeCorrelationRecord(writer: SerializationWriter, correlationRecord?: Partial | undefined | null, isSerializingDerivedType?: boolean): void;