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 license report together. */ export interface CorrelationRecord extends AdditionalDataHolder, Parsable { /** * The user account used to retrieve the license information in the tenant being audited. */ auditTenantAccount?: string | null; /** * The ID of the execution session (run) that is used to tie/relate all of the data together. */ correlationId?: Guid | null; /** * Timestamp of when the report was created. */ createdAt?: Date | null; /** * User account used to store/report the license report to the SHI Lab cloud service. */ reportTenantAccount?: string | null; /** * Unique ID of customer's Microsoft tenant that the license report is for. */ tenantId?: Guid | null; /** * Timestamp of when the report was last updated. */ 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;