# Comment

Represents information about the comment data transfer object.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**creationDate** | **string** | The creation date of the comment. | [optional] [readonly] [default to undefined]
**encodedKey** | **string** | The comments\&#39;s encoded key, which is auto-generated and unique. | [optional] [readonly] [default to undefined]
**lastModifiedDate** | **string** | The last date when this comment was modified. | [optional] [readonly] [default to undefined]
**ownerKey** | **string** | The encoded key of the entity that owns this comment. | [optional] [default to undefined]
**ownerType** | **string** | The type of the entity that owns this comment. | [optional] [default to undefined]
**text** | **string** | The message in the comment. | [default to undefined]
**userKey** | **string** | The user\&#39;s key. | [optional] [readonly] [default to undefined]

## Example

```typescript
import { Comment } from './api';

const instance: Comment = {
    creationDate,
    encodedKey,
    lastModifiedDate,
    ownerKey,
    ownerType,
    text,
    userKey,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
