# CreateIssueOption

CreateIssueOption options to create one issue

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**assignee** | **string** | deprecated | [optional] [default to undefined]
**assignees** | **Array&lt;string&gt;** |  | [optional] [default to undefined]
**body** | **string** |  | [optional] [default to undefined]
**closed** | **boolean** |  | [optional] [default to undefined]
**due_date** | **string** |  | [optional] [default to undefined]
**labels** | **Array&lt;number&gt;** | list of label ids | [optional] [default to undefined]
**milestone** | **number** | milestone id | [optional] [default to undefined]
**ref** | **string** |  | [optional] [default to undefined]
**title** | **string** |  | [default to undefined]

## Example

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

const instance: CreateIssueOption = {
    assignee,
    assignees,
    body,
    closed,
    due_date,
    labels,
    milestone,
    ref,
    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)
