Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

OrganizationSettings

Properties

Name Type Description Notes
enable_pr_creation bool [optional] [default to True]
enable_rules_detection bool [optional] [default to True]

Example

from codegen_api_client.models.organization_settings import OrganizationSettings

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

# convert the object into a dict
organization_settings_dict = organization_settings_instance.to_dict()
# create an instance of OrganizationSettings from a dict
organization_settings_from_dict = OrganizationSettings.from_dict(organization_settings_dict)

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