cberg
Version:
Node.js Client for the Codeberg API
34 lines (26 loc) • 1.03 kB
Markdown
# Tag
Tag represents a repository tag
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**archive_download_count** | [**TagArchiveDownloadCount**](TagArchiveDownloadCount.md) | | [optional] [default to undefined]
**commit** | [**CommitMeta**](CommitMeta.md) | | [optional] [default to undefined]
**id** | **string** | | [optional] [default to undefined]
**message** | **string** | | [optional] [default to undefined]
**name** | **string** | | [optional] [default to undefined]
**tarball_url** | **string** | | [optional] [default to undefined]
**zipball_url** | **string** | | [optional] [default to undefined]
## Example
```typescript
import { Tag } from 'berg';
const instance: Tag = {
archive_download_count,
commit,
id,
message,
name,
tarball_url,
zipball_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)