# CreateStatusOption

CreateStatusOption holds the information needed to create a new CommitStatus for a Commit

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**context** | **string** |  | [optional] [default to undefined]
**description** | **string** |  | [optional] [default to undefined]
**state** | **string** | CommitStatusState holds the state of a CommitStatus It can be \&quot;pending\&quot;, \&quot;success\&quot;, \&quot;error\&quot; and \&quot;failure\&quot; | [optional] [default to undefined]
**target_url** | **string** |  | [optional] [default to undefined]

## Example

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

const instance: CreateStatusOption = {
    context,
    description,
    state,
    target_url,
};
```

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