UNPKG

cberg

Version:

Node.js Client for the Codeberg API

34 lines (26 loc) 1.23 kB
# CombinedStatus CombinedStatus holds the combined state of several statuses for a single commit ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **commit_url** | **string** | | [optional] [default to undefined] **repository** | [**Repository**](Repository.md) | | [optional] [default to undefined] **sha** | **string** | | [optional] [default to undefined] **state** | **string** | CommitStatusState holds the state of a CommitStatus It can be \"pending\", \"success\", \"error\" and \"failure\" | [optional] [default to undefined] **statuses** | [**Array<CommitStatus>**](CommitStatus.md) | | [optional] [default to undefined] **total_count** | **number** | | [optional] [default to undefined] **url** | **string** | | [optional] [default to undefined] ## Example ```typescript import { CombinedStatus } from 'berg'; const instance: CombinedStatus = { commit_url, repository, sha, state, statuses, total_count, 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)