# Repository

Repository represents a repository

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**allow_fast_forward_only_merge** | **boolean** |  | [optional] [default to undefined]
**allow_merge_commits** | **boolean** |  | [optional] [default to undefined]
**allow_rebase** | **boolean** |  | [optional] [default to undefined]
**allow_rebase_explicit** | **boolean** |  | [optional] [default to undefined]
**allow_rebase_update** | **boolean** |  | [optional] [default to undefined]
**allow_squash_merge** | **boolean** |  | [optional] [default to undefined]
**archived** | **boolean** |  | [optional] [default to undefined]
**archived_at** | **string** |  | [optional] [default to undefined]
**avatar_url** | **string** |  | [optional] [default to undefined]
**clone_url** | **string** |  | [optional] [default to undefined]
**created_at** | **string** |  | [optional] [default to undefined]
**default_allow_maintainer_edit** | **boolean** |  | [optional] [default to undefined]
**default_branch** | **string** |  | [optional] [default to undefined]
**default_delete_branch_after_merge** | **boolean** |  | [optional] [default to undefined]
**default_merge_style** | **string** |  | [optional] [default to undefined]
**default_update_style** | **string** |  | [optional] [default to undefined]
**description** | **string** |  | [optional] [default to undefined]
**empty** | **boolean** |  | [optional] [default to undefined]
**external_tracker** | [**ExternalTracker**](ExternalTracker.md) |  | [optional] [default to undefined]
**external_wiki** | [**ExternalWiki**](ExternalWiki.md) |  | [optional] [default to undefined]
**fork** | **boolean** |  | [optional] [default to undefined]
**forks_count** | **number** |  | [optional] [default to undefined]
**full_name** | **string** |  | [optional] [default to undefined]
**globally_editable_wiki** | **boolean** |  | [optional] [default to undefined]
**has_actions** | **boolean** |  | [optional] [default to undefined]
**has_issues** | **boolean** |  | [optional] [default to undefined]
**has_packages** | **boolean** |  | [optional] [default to undefined]
**has_projects** | **boolean** |  | [optional] [default to undefined]
**has_pull_requests** | **boolean** |  | [optional] [default to undefined]
**has_releases** | **boolean** |  | [optional] [default to undefined]
**has_wiki** | **boolean** |  | [optional] [default to undefined]
**html_url** | **string** |  | [optional] [default to undefined]
**id** | **number** |  | [optional] [default to undefined]
**ignore_whitespace_conflicts** | **boolean** |  | [optional] [default to undefined]
**internal** | **boolean** |  | [optional] [default to undefined]
**internal_tracker** | [**InternalTracker**](InternalTracker.md) |  | [optional] [default to undefined]
**language** | **string** |  | [optional] [default to undefined]
**languages_url** | **string** |  | [optional] [default to undefined]
**link** | **string** |  | [optional] [default to undefined]
**mirror** | **boolean** |  | [optional] [default to undefined]
**mirror_interval** | **string** |  | [optional] [default to undefined]
**mirror_updated** | **string** |  | [optional] [default to undefined]
**name** | **string** |  | [optional] [default to undefined]
**object_format_name** | **string** | ObjectFormatName of the underlying git repository | [optional] [default to undefined]
**open_issues_count** | **number** |  | [optional] [default to undefined]
**open_pr_counter** | **number** |  | [optional] [default to undefined]
**original_url** | **string** |  | [optional] [default to undefined]
**owner** | [**User**](User.md) |  | [optional] [default to undefined]
**parent** | [**Repository**](Repository.md) |  | [optional] [default to undefined]
**permissions** | [**Permission**](Permission.md) |  | [optional] [default to undefined]
**_private** | **boolean** |  | [optional] [default to undefined]
**release_counter** | **number** |  | [optional] [default to undefined]
**repo_transfer** | [**RepoTransfer**](RepoTransfer.md) |  | [optional] [default to undefined]
**size** | **number** |  | [optional] [default to undefined]
**ssh_url** | **string** |  | [optional] [default to undefined]
**stars_count** | **number** |  | [optional] [default to undefined]
**template** | **boolean** |  | [optional] [default to undefined]
**topics** | **Array&lt;string&gt;** |  | [optional] [default to undefined]
**updated_at** | **string** |  | [optional] [default to undefined]
**url** | **string** |  | [optional] [default to undefined]
**watchers_count** | **number** |  | [optional] [default to undefined]
**website** | **string** |  | [optional] [default to undefined]
**wiki_branch** | **string** |  | [optional] [default to undefined]

## Example

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

const instance: Repository = {
    allow_fast_forward_only_merge,
    allow_merge_commits,
    allow_rebase,
    allow_rebase_explicit,
    allow_rebase_update,
    allow_squash_merge,
    archived,
    archived_at,
    avatar_url,
    clone_url,
    created_at,
    default_allow_maintainer_edit,
    default_branch,
    default_delete_branch_after_merge,
    default_merge_style,
    default_update_style,
    description,
    empty,
    external_tracker,
    external_wiki,
    fork,
    forks_count,
    full_name,
    globally_editable_wiki,
    has_actions,
    has_issues,
    has_packages,
    has_projects,
    has_pull_requests,
    has_releases,
    has_wiki,
    html_url,
    id,
    ignore_whitespace_conflicts,
    internal,
    internal_tracker,
    language,
    languages_url,
    link,
    mirror,
    mirror_interval,
    mirror_updated,
    name,
    object_format_name,
    open_issues_count,
    open_pr_counter,
    original_url,
    owner,
    parent,
    permissions,
    _private,
    release_counter,
    repo_transfer,
    size,
    ssh_url,
    stars_count,
    template,
    topics,
    updated_at,
    url,
    watchers_count,
    website,
    wiki_branch,
};
```

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