EditOrgOption options for editing an organization
| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | [optional] | |
| 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] |
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)