AdaptableComment
Comment that can be applied to a Cell in AdapTable
TypeScript
export interfaceProperties
| Property | Type | Description |
|---|---|---|
| AdaptableId | string | Id of this AdapTable instance |
| Author | \{ UserName: string; \} | Author of the Comment |
| Timestamp | number | When Comment was made |
| Uuid | TypeUuid | Unique identifier for the Comment |
| Value | string | Content 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