cberg
Version:
Node.js Client for the Codeberg API
40 lines (32 loc) • 1.36 kB
Markdown
# PayloadCommit
PayloadCommit represents a commit
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**added** | **Array<string>** | | [optional] [default to undefined]
**author** | [**PayloadUser**](PayloadUser.md) | | [optional] [default to undefined]
**committer** | [**PayloadUser**](PayloadUser.md) | | [optional] [default to undefined]
**id** | **string** | sha1 hash of the commit | [optional] [default to undefined]
**message** | **string** | | [optional] [default to undefined]
**modified** | **Array<string>** | | [optional] [default to undefined]
**removed** | **Array<string>** | | [optional] [default to undefined]
**timestamp** | **string** | | [optional] [default to undefined]
**url** | **string** | | [optional] [default to undefined]
**verification** | [**PayloadCommitVerification**](PayloadCommitVerification.md) | | [optional] [default to undefined]
## Example
```typescript
import { PayloadCommit } from 'berg';
const instance: PayloadCommit = {
added,
author,
committer,
id,
message,
modified,
removed,
timestamp,
url,
verification,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)