cberg
Version:
Node.js Client for the Codeberg API
40 lines (32 loc) • 1.25 kB
Markdown
# EditIssueOption
EditIssueOption options for editing an 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]
**due_date** | **string** | | [optional] [default to undefined]
**milestone** | **number** | | [optional] [default to undefined]
**ref** | **string** | | [optional] [default to undefined]
**state** | **string** | | [optional] [default to undefined]
**title** | **string** | | [optional] [default to undefined]
**unset_due_date** | **boolean** | | [optional] [default to undefined]
**updated_at** | **string** | | [optional] [default to undefined]
## Example
```typescript
import { EditIssueOption } from 'berg';
const instance: EditIssueOption = {
assignee,
assignees,
body,
due_date,
milestone,
ref,
state,
title,
unset_due_date,
updated_at,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)