# PullReviewComment

PullReviewComment represents a comment on a pull request review

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**body** | **string** |  | [optional] [default to undefined]
**commit_id** | **string** |  | [optional] [default to undefined]
**created_at** | **string** |  | [optional] [default to undefined]
**diff_hunk** | **string** |  | [optional] [default to undefined]
**html_url** | **string** |  | [optional] [default to undefined]
**id** | **number** |  | [optional] [default to undefined]
**original_commit_id** | **string** |  | [optional] [default to undefined]
**original_position** | **number** |  | [optional] [default to undefined]
**path** | **string** |  | [optional] [default to undefined]
**position** | **number** |  | [optional] [default to undefined]
**pull_request_review_id** | **number** |  | [optional] [default to undefined]
**pull_request_url** | **string** |  | [optional] [default to undefined]
**resolver** | [**User**](User.md) |  | [optional] [default to undefined]
**updated_at** | **string** |  | [optional] [default to undefined]
**user** | [**User**](User.md) |  | [optional] [default to undefined]

## Example

```typescript
import { PullReviewComment } from 'berg';

const instance: PullReviewComment = {
    body,
    commit_id,
    created_at,
    diff_hunk,
    html_url,
    id,
    original_commit_id,
    original_position,
    path,
    position,
    pull_request_review_id,
    pull_request_url,
    resolver,
    updated_at,
    user,
};
```

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