Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.63 KB

V1beta1ProjectRequestBody.md

File metadata and controls

31 lines (23 loc) · 1.63 KB

V1beta1ProjectRequestBody

Properties

Name Type Description Notes
name str The name of the project. The name must be unique within the entire Frontier instance. The name can contain only alphanumeric characters, dashes and underscores.<br/> Example: `frontier-playground`
title str The title can contain any UTF-8 character, used to provide a human-readable name for the project. Can also be left empty. <br/> Example: `Frontier Playground` [optional]
metadata object Metadata object for projects that can hold key value pairs defined in Project Metaschema. [optional]
org_id str unique id of the organization to which project belongs

Example

from frontier_api.models.v1beta1_project_request_body import V1beta1ProjectRequestBody

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

# convert the object into a dict
v1beta1_project_request_body_dict = v1beta1_project_request_body_instance.to_dict()
# create an instance of V1beta1ProjectRequestBody from a dict
v1beta1_project_request_body_form_dict = v1beta1_project_request_body.from_dict(v1beta1_project_request_body_dict)

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