CreateOrgOption options for creating 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] | |
username | str | ||
visibility | str | possible values are `public` (default), `limited` or `private` | [optional] |
website | str | [optional] |
from clientapi_forgejo.models.create_org_option import CreateOrgOption
# TODO update the JSON string below
json = "{}"
# create an instance of CreateOrgOption from a JSON string
create_org_option_instance = CreateOrgOption.from_json(json)
# print the JSON string representation of the object
print(CreateOrgOption.to_json())
# convert the object into a dict
create_org_option_dict = create_org_option_instance.to_dict()
# create an instance of CreateOrgOption from a dict
create_org_option_from_dict = CreateOrgOption.from_dict(create_org_option_dict)