-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from mondaycom/feat/ori/add-json-data-contract
Add generic JsonDataContract
- Loading branch information
Showing
39 changed files
with
1,350 additions
and
419 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,32 @@ | ||
# IncrementCounter200Response | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**new_counter_value** | **float** | | | ||
**message** | **str** | | | ||
**success** | **bool** | | | ||
**error** | **object** | | | ||
|
||
## Example | ||
|
||
```python | ||
from monday_code.models.increment_counter200_response import IncrementCounter200Response | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of IncrementCounter200Response from a JSON string | ||
increment_counter200_response_instance = IncrementCounter200Response.from_json(json) | ||
# print the JSON string representation of the object | ||
print(IncrementCounter200Response.to_json()) | ||
|
||
# convert the object into a dict | ||
increment_counter200_response_dict = increment_counter200_response_instance.to_dict() | ||
# create an instance of IncrementCounter200Response from a dict | ||
increment_counter200_response_from_dict = IncrementCounter200Response.from_dict(increment_counter200_response_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 @@ | ||
# IncrementCounter200ResponseAnyOf | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**new_counter_value** | **object** | | [optional] | ||
**message** | **object** | | [optional] | ||
**success** | **bool** | | | ||
**error** | **str** | | | ||
|
||
## Example | ||
|
||
```python | ||
from monday_code.models.increment_counter200_response_any_of import IncrementCounter200ResponseAnyOf | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of IncrementCounter200ResponseAnyOf from a JSON string | ||
increment_counter200_response_any_of_instance = IncrementCounter200ResponseAnyOf.from_json(json) | ||
# print the JSON string representation of the object | ||
print(IncrementCounter200ResponseAnyOf.to_json()) | ||
|
||
# convert the object into a dict | ||
increment_counter200_response_any_of_dict = increment_counter200_response_any_of_instance.to_dict() | ||
# create an instance of IncrementCounter200ResponseAnyOf from a dict | ||
increment_counter200_response_any_of_from_dict = IncrementCounter200ResponseAnyOf.from_dict(increment_counter200_response_any_of_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 @@ | ||
# IncrementCounter200ResponseAnyOf1 | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**error** | **object** | | [optional] | ||
**success** | **bool** | | | ||
**new_counter_value** | **float** | | | ||
**message** | **str** | | | ||
|
||
## Example | ||
|
||
```python | ||
from monday_code.models.increment_counter200_response_any_of1 import IncrementCounter200ResponseAnyOf1 | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of IncrementCounter200ResponseAnyOf1 from a JSON string | ||
increment_counter200_response_any_of1_instance = IncrementCounter200ResponseAnyOf1.from_json(json) | ||
# print the JSON string representation of the object | ||
print(IncrementCounter200ResponseAnyOf1.to_json()) | ||
|
||
# convert the object into a dict | ||
increment_counter200_response_any_of1_dict = increment_counter200_response_any_of1_instance.to_dict() | ||
# create an instance of IncrementCounter200ResponseAnyOf1 from a dict | ||
increment_counter200_response_any_of1_from_dict = IncrementCounter200ResponseAnyOf1.from_dict(increment_counter200_response_any_of1_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,29 @@ | ||
# JsonDataContract | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**value** | **object** | | | ||
|
||
## Example | ||
|
||
```python | ||
from monday_code.models.json_data_contract import JsonDataContract | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of JsonDataContract from a JSON string | ||
json_data_contract_instance = JsonDataContract.from_json(json) | ||
# print the JSON string representation of the object | ||
print(JsonDataContract.to_json()) | ||
|
||
# convert the object into a dict | ||
json_data_contract_dict = json_data_contract_instance.to_dict() | ||
# create an instance of JsonDataContract from a dict | ||
json_data_contract_from_dict = JsonDataContract.from_dict(json_data_contract_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 was deleted.
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 was deleted.
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
Oops, something went wrong.