# ChatUserResource


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**type** | **string** | Type of user | [default to undefined]
**id** | **number** | 64-bit integer identifier associated with this resource | [default to undefined]
**call_status** | **string** | Call presence status of this user | [optional] [default to undefined]
**display_name** | **string** | Human readable name of this user. Shown to other users | [default to undefined]
**display_picture_url** | **string** | URL for this user\&#39;s display picture | [default to undefined]
**isGuest** | **boolean** | True if this user was created by a guest user session | [default to undefined]
**name** | **string** | The unique name used to identify this user across ChatKitty. Also known as username | [default to undefined]
**presence** | [**ChatUserPresenceProperties**](ChatUserPresenceProperties.md) |  | [default to undefined]
**properties** | **{ [key: string]: object; }** | Custom data associated with this user | [default to undefined]
**_links** | [**Array&lt;Link&gt;**](Link.md) | Hypermedia control links for this resource | [optional] [default to undefined]

## Example

```typescript
import { ChatUserResource } from 'chatkitty';

const instance: ChatUserResource = {
    type,
    id,
    call_status,
    display_name,
    display_picture_url,
    isGuest,
    name,
    presence,
    properties,
    _links,
};
```

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