1.2 KiB
1.2 KiB
DomainGetMeResponse
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| functions | List[DomainCompanyFunction] | [optional] | |
| id | str | [optional] | |
| level | int | [optional] | |
| name | str | [optional] | |
| prompt_blocks | List[DomainPromptBlock] | [optional] |
Example
from openapi_client.models.domain_get_me_response import DomainGetMeResponse
# TODO update the JSON string below
json = "{}"
# create an instance of DomainGetMeResponse from a JSON string
domain_get_me_response_instance = DomainGetMeResponse.from_json(json)
# print the JSON string representation of the object
print(DomainGetMeResponse.to_json())
# convert the object into a dict
domain_get_me_response_dict = domain_get_me_response_instance.to_dict()
# create an instance of DomainGetMeResponse from a dict
domain_get_me_response_from_dict = DomainGetMeResponse.from_dict(domain_get_me_response_dict)