-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Recommendation Unit and Action Types
- Loading branch information
Showing
126 changed files
with
9,387 additions
and
183 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# ActionType | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**service** | [**Service**](Service.md) | | | ||
**title** | **str** | Title | | ||
**subtitle** | **str** | | [optional] | ||
**description** | **str** | Description | | ||
**id** | **int** | Action Type ID | | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.action_type import ActionType | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of ActionType from a JSON string | ||
action_type_instance = ActionType.from_json(json) | ||
# print the JSON string representation of the object | ||
print(ActionType.to_json()) | ||
|
||
# convert the object into a dict | ||
action_type_dict = action_type_instance.to_dict() | ||
# create an instance of ActionType from a dict | ||
action_type_form_dict = action_type.from_dict(action_type_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# ActionTypeFilters | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**search_query** | **str** | | [optional] | ||
**ids** | **List[int]** | Filter by recommendation unit id/alias. | [optional] [default to []] | ||
**services** | [**List[ActionTypeFiltersServicesInner]**](ActionTypeFiltersServicesInner.md) | Filter by Services | [optional] [default to []] | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.action_type_filters import ActionTypeFilters | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of ActionTypeFilters from a JSON string | ||
action_type_filters_instance = ActionTypeFilters.from_json(json) | ||
# print the JSON string representation of the object | ||
print(ActionTypeFilters.to_json()) | ||
|
||
# convert the object into a dict | ||
action_type_filters_dict = action_type_filters_instance.to_dict() | ||
# create an instance of ActionTypeFilters from a dict | ||
action_type_filters_form_dict = action_type_filters.from_dict(action_type_filters_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# ActionTypeFiltersServicesInner | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.action_type_filters_services_inner import ActionTypeFiltersServicesInner | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of ActionTypeFiltersServicesInner from a JSON string | ||
action_type_filters_services_inner_instance = ActionTypeFiltersServicesInner.from_json(json) | ||
# print the JSON string representation of the object | ||
print(ActionTypeFiltersServicesInner.to_json()) | ||
|
||
# convert the object into a dict | ||
action_type_filters_services_inner_dict = action_type_filters_services_inner_instance.to_dict() | ||
# create an instance of ActionTypeFiltersServicesInner from a dict | ||
action_type_filters_services_inner_form_dict = action_type_filters_services_inner.from_dict(action_type_filters_services_inner_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# CreateActionTypeRequest | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**service** | [**Service**](Service.md) | | | ||
**title** | **str** | Title | | ||
**subtitle** | **str** | | [optional] | ||
**description** | **str** | Description | | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.create_action_type_request import CreateActionTypeRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of CreateActionTypeRequest from a JSON string | ||
create_action_type_request_instance = CreateActionTypeRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print(CreateActionTypeRequest.to_json()) | ||
|
||
# convert the object into a dict | ||
create_action_type_request_dict = create_action_type_request_instance.to_dict() | ||
# create an instance of CreateActionTypeRequest from a dict | ||
create_action_type_request_form_dict = create_action_type_request.from_dict(create_action_type_request_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
Oops, something went wrong.