Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.32 KB

CreateOrgOption.md

File metadata and controls

37 lines (28 loc) · 1.32 KB

CreateOrgOption

CreateOrgOption options for creating 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]
username str
visibility str possible values are `public` (default), `limited` or `private` [optional]
website str [optional]

Example

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)

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