Name | Type | Description | Notes |
---|---|---|---|
project_id | str | [optional] | |
project_name | str | [optional] | |
is_admin | bool | If `is_admin` is `true`, the user is: - automatically `MANAGER` for each environment type - allowed to manage project deployment rules - able to delete the project Note that `permissions` can then be ignored for this project | [optional] [default to False] |
permissions | List[OrganizationCustomRoleUpdateRequestProjectPermissionsInnerPermissionsInner] | [optional] |
from qovery.models.organization_custom_role_project_permissions_inner import OrganizationCustomRoleProjectPermissionsInner
# TODO update the JSON string below
json = "{}"
# create an instance of OrganizationCustomRoleProjectPermissionsInner from a JSON string
organization_custom_role_project_permissions_inner_instance = OrganizationCustomRoleProjectPermissionsInner.from_json(json)
# print the JSON string representation of the object
print OrganizationCustomRoleProjectPermissionsInner.to_json()
# convert the object into a dict
organization_custom_role_project_permissions_inner_dict = organization_custom_role_project_permissions_inner_instance.to_dict()
# create an instance of OrganizationCustomRoleProjectPermissionsInner from a dict
organization_custom_role_project_permissions_inner_form_dict = organization_custom_role_project_permissions_inner.from_dict(organization_custom_role_project_permissions_inner_dict)