Some checks failed
ai_core_api_client Python package / build (3.10) (push) Failing after 1m16s
ai_core_api_client Python package / build (3.11) (push) Failing after 1m14s
ai_core_api_client Python package / build (3.12) (push) Failing after 5s
ai_core_api_client Python package / build (3.13) (push) Failing after 5s
ai_core_api_client Python package / build (3.9) (push) Failing after 5s
1.2 KiB
1.2 KiB
DomainCompany
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| functions | List[DomainCompanyFunction] | [optional] | |
| id | str | [optional] | |
| integration_url | str | [optional] | |
| name | str | [optional] | |
| prompt_blocks | List[DomainPromptBlock] | [optional] | |
| token | str | [optional] |
Example
from ai_core_api_client.models.domain_company import DomainCompany
# TODO update the JSON string below
json = "{}"
# create an instance of DomainCompany from a JSON string
domain_company_instance = DomainCompany.from_json(json)
# print the JSON string representation of the object
print(DomainCompany.to_json())
# convert the object into a dict
domain_company_dict = domain_company_instance.to_dict()
# create an instance of DomainCompany from a dict
domain_company_from_dict = DomainCompany.from_dict(domain_company_dict)