-
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.
- Loading branch information
1 parent
3b0cea4
commit fc85679
Showing
285 changed files
with
2,303 additions
and
597 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
7.7.0 | ||
7.8.0 |
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,32 @@ | ||
# BatchResourceDeleteOperation | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**entity** | [**BatchResourceDeleteOperationEntity**](BatchResourceDeleteOperationEntity.md) | | | ||
**action** | [**BatchResourceDeleteOperationAction**](BatchResourceDeleteOperationAction.md) | | | ||
**query** | [**BatchResourceDeleteOperationQuery**](BatchResourceDeleteOperationQuery.md) | | | ||
**action_parameters** | [**BatchResourceDeleteOperationActionParameters**](BatchResourceDeleteOperationActionParameters.md) | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from waylay.services.resources.models.batch_resource_delete_operation import BatchResourceDeleteOperation | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of BatchResourceDeleteOperation from a JSON string | ||
batch_resource_delete_operation_instance = BatchResourceDeleteOperation.from_json(json) | ||
# print the JSON string representation of the object | ||
print BatchResourceDeleteOperation.to_json() | ||
|
||
# convert the object into a dict | ||
batch_resource_delete_operation_dict = batch_resource_delete_operation_instance.to_dict() | ||
# create an instance of BatchResourceDeleteOperation from a dict | ||
batch_resource_delete_operation_form_dict = batch_resource_delete_operation.from_dict(batch_resource_delete_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# BatchResourceDeleteOperationAction | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
|
||
[[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,29 @@ | ||
# BatchResourceDeleteOperationActionParameters | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**cascade** | [**List[CascadeDeleteValuesInner]**](CascadeDeleteValuesInner.md) | | | ||
|
||
## Example | ||
|
||
```python | ||
from waylay.services.resources.models.batch_resource_delete_operation_action_parameters import BatchResourceDeleteOperationActionParameters | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of BatchResourceDeleteOperationActionParameters from a JSON string | ||
batch_resource_delete_operation_action_parameters_instance = BatchResourceDeleteOperationActionParameters.from_json(json) | ||
# print the JSON string representation of the object | ||
print BatchResourceDeleteOperationActionParameters.to_json() | ||
|
||
# convert the object into a dict | ||
batch_resource_delete_operation_action_parameters_dict = batch_resource_delete_operation_action_parameters_instance.to_dict() | ||
# create an instance of BatchResourceDeleteOperationActionParameters from a dict | ||
batch_resource_delete_operation_action_parameters_form_dict = batch_resource_delete_operation_action_parameters.from_dict(batch_resource_delete_operation_action_parameters_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) | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
docs/BatchResourceOperationEntity.md → docs/BatchResourceDeleteOperationEntity.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# BatchResourceOperationEntity | ||
# BatchResourceDeleteOperationEntity | ||
|
||
Type of entities to remove | ||
|
||
|
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 @@ | ||
# BatchResourceDeleteOperationQuery | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**ids** | [**List[ResourceId]**](ResourceId.md) | | | ||
|
||
## Example | ||
|
||
```python | ||
from waylay.services.resources.models.batch_resource_delete_operation_query import BatchResourceDeleteOperationQuery | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of BatchResourceDeleteOperationQuery from a JSON string | ||
batch_resource_delete_operation_query_instance = BatchResourceDeleteOperationQuery.from_json(json) | ||
# print the JSON string representation of the object | ||
print BatchResourceDeleteOperationQuery.to_json() | ||
|
||
# convert the object into a dict | ||
batch_resource_delete_operation_query_dict = batch_resource_delete_operation_query_instance.to_dict() | ||
# create an instance of BatchResourceDeleteOperationQuery from a dict | ||
batch_resource_delete_operation_query_form_dict = batch_resource_delete_operation_query.from_dict(batch_resource_delete_operation_query_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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.