blob: 1bf281252c922cf8f026747a3c057648186ae42d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# UserProfileKnowledge
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**property_id** | **string** | | [default to undefined]
**property_label** | **string** | | [default to undefined]
**translation** | **string** | | [default to undefined]
**answer** | [**Array<UserProfileKnowledgeAnswer>**](UserProfileKnowledgeAnswer.md) | | [optional] [default to undefined]
**created** | **string** | When the User submitted this Profiling data | [default to undefined]
## Example
```typescript
import { UserProfileKnowledge } from './api';
const instance: UserProfileKnowledge = {
property_id,
property_label,
translation,
answer,
created,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|