Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Latest commit

 

History

History
31 lines (23 loc) · 1.84 KB

OrganizationCustomRoleProjectPermissionsInner.md

File metadata and controls

31 lines (23 loc) · 1.84 KB

OrganizationCustomRoleProjectPermissionsInner

Properties

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]

Example

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)

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