Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 2.31 KB

V1beta1OrganizationRequestBody.md

File metadata and controls

31 lines (23 loc) · 2.31 KB

V1beta1OrganizationRequestBody

Properties

Name Type Description Notes
name str The name of the organization. The name must be unique within the entire Frontier instance. The name can contain only alphanumeric characters, dashes and underscores.<br/>Example:`&quot;frontier-org1-acme&quot;`
title str The title can contain any UTF-8 character, used to provide a human-readable name for the organization. Can also be left empty.<br/> Example: `&quot;Acme Inc&quot;` [optional]
metadata object Metadata object for organizations that can hold key value pairs defined in Organization Metaschema. The metadata object can be used to store arbitrary information about the organization such as labels, descriptions etc. The default Organization Metaschema contains labels and descripton fields. Update the Organization Metaschema to add more fields. <br/>Example:`{&quot;labels&quot;: {&quot;key&quot;: &quot;value&quot;}, &quot;description&quot;: &quot;Organization description&quot;}` [optional]
avatar str The avatar is base64 encoded image data of the user. Can also be left empty. The image should be less than 200KB. Should follow the regex pattern `^data:image/(png jpg

Example

from frontier_api.models.v1beta1_organization_request_body import V1beta1OrganizationRequestBody

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

# convert the object into a dict
v1beta1_organization_request_body_dict = v1beta1_organization_request_body_instance.to_dict()
# create an instance of V1beta1OrganizationRequestBody from a dict
v1beta1_organization_request_body_form_dict = v1beta1_organization_request_body.from_dict(v1beta1_organization_request_body_dict)

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