import { AssociationStatus } from "./associationStatus"; import { ScaDeviceType } from "./scaDeviceType"; import { ScaEntityType } from "./scaEntityType"; export declare class AssociationListing { /** * The date and time when the association was created. */ "createdAt": Date; /** * The unique identifier of the entity. */ "entityId": string; "entityType": ScaEntityType; /** * The unique identifier of the SCA device. */ "scaDeviceId": string; /** * The human-readable name for the SCA device that was registered. */ "scaDeviceName"?: string; "scaDeviceType": ScaDeviceType; "status": AssociationStatus; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); } export declare namespace AssociationListing { }