33 lines
957 B
Markdown
33 lines
957 B
Markdown
# PatchNotes
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**patch_id** | **str** | | [optional]
|
|
**title** | **str** | | [optional]
|
|
**changes** | **str** | | [optional]
|
|
**var_date** | **str** | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from openapi_client.models.patch_notes import PatchNotes
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of PatchNotes from a JSON string
|
|
patch_notes_instance = PatchNotes.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(PatchNotes.to_json())
|
|
|
|
# convert the object into a dict
|
|
patch_notes_dict = patch_notes_instance.to_dict()
|
|
# create an instance of PatchNotes from a dict
|
|
patch_notes_from_dict = PatchNotes.from_dict(patch_notes_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)
|
|
|
|
|