| Name | Type | Description | Notes |
|---|---|---|---|
| var_date | str | [optional] | |
| str | [optional] | ||
| name | str | [optional] |
from openapi_client.models.commit_user import CommitUser
# TODO update the JSON string below
json = "{}"
# create an instance of CommitUser from a JSON string
commit_user_instance = CommitUser.from_json(json)
# print the JSON string representation of the object
print(CommitUser.to_json())
# convert the object into a dict
commit_user_dict = commit_user_instance.to_dict()
# create an instance of CommitUser from a dict
commit_user_from_dict = CommitUser.from_dict(commit_user_dict)