Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.25 KB

EditOrgOption.md

File metadata and controls

36 lines (27 loc) · 1.25 KB

EditOrgOption

EditOrgOption options for editing an organization

Properties

Name Type Description Notes
description str [optional]
email str [optional]
full_name str [optional]
location str [optional]
repo_admin_change_team_access bool [optional]
visibility str possible values are `public`, `limited` or `private` [optional]
website str [optional]

Example

from clientapi_forgejo.models.edit_org_option import EditOrgOption

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

# convert the object into a dict
edit_org_option_dict = edit_org_option_instance.to_dict()
# create an instance of EditOrgOption from a dict
edit_org_option_from_dict = EditOrgOption.from_dict(edit_org_option_dict)

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