-
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.
Make json logic internal types as any
- Loading branch information
Showing
49 changed files
with
867 additions
and
200 deletions.
There are no files selected for viewing
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
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,30 @@ | ||
# AnomalyLogicOperation | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**var_and** | [**List[AndItem]**](AndItem.md) | | [optional] | ||
**var_or** | [**List[OrItem]**](OrItem.md) | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.anomaly_logic_operation import AnomalyLogicOperation | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AnomalyLogicOperation from a JSON string | ||
anomaly_logic_operation_instance = AnomalyLogicOperation.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AnomalyLogicOperation.to_json()) | ||
|
||
# convert the object into a dict | ||
anomaly_logic_operation_dict = anomaly_logic_operation_instance.to_dict() | ||
# create an instance of AnomalyLogicOperation from a dict | ||
anomaly_logic_operation_form_dict = anomaly_logic_operation.from_dict(anomaly_logic_operation_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
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,29 @@ | ||
# CreateTenantUserRequestRole | ||
|
||
Role of the user in the tenant | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.create_tenant_user_request_role import CreateTenantUserRequestRole | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of CreateTenantUserRequestRole from a JSON string | ||
create_tenant_user_request_role_instance = CreateTenantUserRequestRole.from_json(json) | ||
# print the JSON string representation of the object | ||
print(CreateTenantUserRequestRole.to_json()) | ||
|
||
# convert the object into a dict | ||
create_tenant_user_request_role_dict = create_tenant_user_request_role_instance.to_dict() | ||
# create an instance of CreateTenantUserRequestRole from a dict | ||
create_tenant_user_request_role_form_dict = create_tenant_user_request_role.from_dict(create_tenant_user_request_role_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
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,29 @@ | ||
# CreateTenantUserResponseStatus | ||
|
||
Status of the user like ACTIVE, BLOCKED etc. | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
|
||
## Example | ||
|
||
```python | ||
from onelens_backend_client.models.create_tenant_user_response_status import CreateTenantUserResponseStatus | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of CreateTenantUserResponseStatus from a JSON string | ||
create_tenant_user_response_status_instance = CreateTenantUserResponseStatus.from_json(json) | ||
# print the JSON string representation of the object | ||
print(CreateTenantUserResponseStatus.to_json()) | ||
|
||
# convert the object into a dict | ||
create_tenant_user_response_status_dict = create_tenant_user_response_status_instance.to_dict() | ||
# create an instance of CreateTenantUserResponseStatus from a dict | ||
create_tenant_user_response_status_form_dict = create_tenant_user_response_status.from_dict(create_tenant_user_response_status_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
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
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
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
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
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
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
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
Oops, something went wrong.