AdaptableComment

Comment that can be applied to a Cell in AdapTable

TypeScript
export interface

Properties

PropertyTypeDescription
AdaptableIdstringId of this AdapTable instance
Author\{ UserName: string; \}Author of the Comment
TimestampnumberWhen Comment was made
UuidTypeUuidUnique identifier for the Comment
ValuestringContent of the Comment

Property Details

AdaptableId

Id of this AdapTable instance

TypeScript
AdaptableId?: string;
Property Value

string

Author

Author of the Comment

TypeScript
Author?: {
        UserName: string;
    };
Property Value

\{ UserName: string; \}

Timestamp

When Comment was made

TypeScript
Timestamp: number;
Property Value

number

Uuid

Unique identifier for the Comment

TypeScript
Uuid?: TypeUuid;
Property Value

TypeUuid

Value

Content of the Comment

TypeScript
Value: string;
Property Value

string