diff options
Diffstat (limited to 'jb-ui/src/api_fsb/docs/MarketProfileKnowledge.md')
| -rw-r--r-- | jb-ui/src/api_fsb/docs/MarketProfileKnowledge.md | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/jb-ui/src/api_fsb/docs/MarketProfileKnowledge.md b/jb-ui/src/api_fsb/docs/MarketProfileKnowledge.md new file mode 100644 index 0000000..0e6e36a --- /dev/null +++ b/jb-ui/src/api_fsb/docs/MarketProfileKnowledge.md @@ -0,0 +1,27 @@ +# MarketProfileKnowledge + +This is used solely in API responses, so it is simplified. + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**source** | [**Source**](Source.md) | Marketplace this question is from | [default to undefined] +**question_id** | **string** | | [default to undefined] +**answer** | **Array<string>** | | [optional] [default to undefined] +**created** | **string** | When the User submitted this Profiling data | [default to undefined] + +## Example + +```typescript +import { MarketProfileKnowledge } from './api'; + +const instance: MarketProfileKnowledge = { + source, + question_id, + 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) |
