957 B
957 B
PatchNotes
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| patch_id | str | [optional] | |
| title | str | [optional] | |
| changes | str | [optional] | |
| var_date | str | [optional] |
Example
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)