cberg
Version:
Node.js Client for the Codeberg API
38 lines (30 loc) • 1.19 kB
Markdown
# CreateIssueOption
CreateIssueOption options to create one issue
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**assignee** | **string** | deprecated | [optional] [default to undefined]
**assignees** | **Array<string>** | | [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<number>** | 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)