# CreatePullRequestOption

CreatePullRequestOption options when creating a pull request

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**assignee** | **string** |  | [optional] [default to undefined]
**assignees** | **Array&lt;string&gt;** |  | [optional] [default to undefined]
**base** | **string** |  | [optional] [default to undefined]
**body** | **string** |  | [optional] [default to undefined]
**due_date** | **string** |  | [optional] [default to undefined]
**head** | **string** |  | [optional] [default to undefined]
**labels** | **Array&lt;number&gt;** |  | [optional] [default to undefined]
**milestone** | **number** |  | [optional] [default to undefined]
**title** | **string** |  | [optional] [default to undefined]

## Example

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

const instance: CreatePullRequestOption = {
    assignee,
    assignees,
    base,
    body,
    due_date,
    head,
    labels,
    milestone,
    title,
};
```

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