Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.22 KB

PushMirror.md

File metadata and controls

38 lines (29 loc) · 1.22 KB

PushMirror

PushMirror represents information of a push mirror

Properties

Name Type Description Notes
created datetime [optional]
interval str [optional]
last_error str [optional]
last_update datetime [optional]
public_key str [optional]
remote_address str [optional]
remote_name str [optional]
repo_name str [optional]
sync_on_commit bool [optional]

Example

from clientapi_forgejo.models.push_mirror import PushMirror

# TODO update the JSON string below
json = "{}"
# create an instance of PushMirror from a JSON string
push_mirror_instance = PushMirror.from_json(json)
# print the JSON string representation of the object
print(PushMirror.to_json())

# convert the object into a dict
push_mirror_dict = push_mirror_instance.to_dict()
# create an instance of PushMirror from a dict
push_mirror_from_dict = PushMirror.from_dict(push_mirror_dict)

[Back to Model list] [Back to API list] [Back to README]