# ActionRunJob

ActionRunJob represents a job of a run

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **number** | the action run job id | [optional] [default to undefined]
**name** | **string** | the action run job name | [optional] [default to undefined]
**needs** | **Array&lt;string&gt;** | the action run job needed ids | [optional] [default to undefined]
**owner_id** | **number** | the owner id | [optional] [default to undefined]
**repo_id** | **number** | the repository id | [optional] [default to undefined]
**runs_on** | **Array&lt;string&gt;** | the action run job labels to run on | [optional] [default to undefined]
**status** | **string** | the action run job status | [optional] [default to undefined]
**task_id** | **number** | the action run job latest task id | [optional] [default to undefined]

## Example

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

const instance: ActionRunJob = {
    id,
    name,
    needs,
    owner_id,
    repo_id,
    runs_on,
    status,
    task_id,
};
```

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