cberg
Version:
Node.js Client for the Codeberg API
48 lines (40 loc) • 1.59 kB
Markdown
# PullReview
PullReview represents a pull request review
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**body** | **string** | | [optional] [default to undefined]
**comments_count** | **number** | | [optional] [default to undefined]
**commit_id** | **string** | | [optional] [default to undefined]
**dismissed** | **boolean** | | [optional] [default to undefined]
**html_url** | **string** | | [optional] [default to undefined]
**id** | **number** | | [optional] [default to undefined]
**official** | **boolean** | | [optional] [default to undefined]
**pull_request_url** | **string** | | [optional] [default to undefined]
**stale** | **boolean** | | [optional] [default to undefined]
**state** | **string** | ReviewStateType review state type | [optional] [default to undefined]
**submitted_at** | **string** | | [optional] [default to undefined]
**team** | [**Team**](Team.md) | | [optional] [default to undefined]
**updated_at** | **string** | | [optional] [default to undefined]
**user** | [**User**](User.md) | | [optional] [default to undefined]
## Example
```typescript
import { PullReview } from 'berg';
const instance: PullReview = {
body,
comments_count,
commit_id,
dismissed,
html_url,
id,
official,
pull_request_url,
stale,
state,
submitted_at,
team,
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)