# User

User represents a user

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**active** | **boolean** | Is user active | [optional] [default to undefined]
**avatar_url** | **string** | URL to the user\&#39;s avatar | [optional] [default to undefined]
**created** | **string** |  | [optional] [default to undefined]
**description** | **string** | the user\&#39;s description | [optional] [default to undefined]
**email** | **string** |  | [optional] [default to undefined]
**followers_count** | **number** | user counts | [optional] [default to undefined]
**following_count** | **number** |  | [optional] [default to undefined]
**full_name** | **string** | the user\&#39;s full name | [optional] [default to undefined]
**html_url** | **string** | URL to the user\&#39;s profile page | [optional] [default to undefined]
**id** | **number** | the user\&#39;s id | [optional] [default to undefined]
**is_admin** | **boolean** | Is the user an administrator | [optional] [default to undefined]
**language** | **string** | User locale | [optional] [default to undefined]
**last_login** | **string** |  | [optional] [default to undefined]
**location** | **string** | the user\&#39;s location | [optional] [default to undefined]
**login** | **string** | the user\&#39;s username | [optional] [default to undefined]
**login_name** | **string** | the user\&#39;s authentication sign-in name. | [optional] [default to 'empty']
**prohibit_login** | **boolean** | Is user login prohibited | [optional] [default to undefined]
**pronouns** | **string** | the user\&#39;s pronouns | [optional] [default to undefined]
**restricted** | **boolean** | Is user restricted | [optional] [default to undefined]
**source_id** | **number** | The ID of the user\&#39;s Authentication Source | [optional] [default to undefined]
**starred_repos_count** | **number** |  | [optional] [default to undefined]
**visibility** | **string** | User visibility level option: public, limited, private | [optional] [default to undefined]
**website** | **string** | the user\&#39;s website | [optional] [default to undefined]

## Example

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

const instance: User = {
    active,
    avatar_url,
    created,
    description,
    email,
    followers_count,
    following_count,
    full_name,
    html_url,
    id,
    is_admin,
    language,
    last_login,
    location,
    login,
    login_name,
    prohibit_login,
    pronouns,
    restricted,
    source_id,
    starred_repos_count,
    visibility,
    website,
};
```

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