Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.21 KB

File metadata and controls

34 lines (25 loc) · 1.21 KB

CreatePushMirrorOption

Properties

Name Type Description Notes
interval str [optional]
remote_address str [optional]
remote_password str [optional]
remote_username str [optional]
sync_on_commit bool [optional]
use_ssh bool [optional]

Example

from clientapi_forgejo.models.create_push_mirror_option import CreatePushMirrorOption

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

# convert the object into a dict
create_push_mirror_option_dict = create_push_mirror_option_instance.to_dict()
# create an instance of CreatePushMirrorOption from a dict
create_push_mirror_option_from_dict = CreatePushMirrorOption.from_dict(create_push_mirror_option_dict)

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