# APIEntitiesJob

API_Entities_Job model

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **number** | The ID of the job | [optional] [default to undefined]
**name** | **string** | The name of the job | [optional] [default to undefined]
**status** | **string** | The current status of the job | [optional] [default to undefined]
**stage** | **string** | The stage of the job in the CI/CD pipeline | [optional] [default to undefined]
**created_at** | **string** | The creation time of the job | [optional] [default to undefined]
**started_at** | **string** | The start time of the job | [optional] [default to undefined]
**finished_at** | **string** | The finish time of the job | [optional] [default to undefined]
**commit** | [**APIEntitiesCommit**](APIEntitiesCommit.md) |  | [optional] [default to undefined]
**archived** | **boolean** | Indicates if the job is archived | [optional] [default to undefined]
**allow_failure** | **boolean** | Indicates if the job is allowed to fail | [optional] [default to undefined]
**erased_at** | **string** | The time when the job was erased, if applicable | [optional] [default to undefined]
**duration** | **number** | The duration of the job in seconds | [optional] [default to undefined]
**queued_duration** | **number** | The duration the job was queued before execution, in seconds | [optional] [default to undefined]
**ref** | **string** | The reference for the job | [optional] [default to undefined]
**artifacts** | **Array&lt;string&gt;** | The artifacts produced by the job | [optional] [default to undefined]
**tag** | **boolean** | Indicates if the job is tagged | [optional] [default to undefined]
**web_url** | **string** | The URL for accessing the job in the web interface | [optional] [default to undefined]
**project** | [**APIEntitiesJobProject**](APIEntitiesJobProject.md) |  | [optional] [default to undefined]
**user** | [**APIEntitiesUserBasic**](APIEntitiesUserBasic.md) |  | [optional] [default to undefined]

## Example

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

const instance: APIEntitiesJob = {
    id,
    name,
    status,
    stage,
    created_at,
    started_at,
    finished_at,
    commit,
    archived,
    allow_failure,
    erased_at,
    duration,
    queued_duration,
    ref,
    artifacts,
    tag,
    web_url,
    project,
    user,
};
```

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