| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| url | str | [optional] | |
| description | str | [optional] | |
| results_insights | str | [optional] | |
| license | int | [optional] | |
| tech_stack | str | [optional] | |
| category_id | int | [optional] | |
| user_id | int | [optional] | |
| team_id | int | [optional] | |
| tags | List[int] | [optional] | |
| dataset | List[CreateToolsIntegrationsRequestDatasetInner] | [optional] | |
| enabled | int | [optional] | |
| programming_language | List[int] | [optional] | |
| programming_package | List[int] | [optional] | |
| type_category | List[int] | [optional] | |
| associated_authors | str | [optional] | |
| contact_address | str | [optional] | |
| publications | List[CreateToolsIntegrationsRequestPublicationsInner] | [optional] | |
| durs | List[int] | [optional] | |
| collections | List[CreateToolsRequestCollectionsInner] | [optional] | |
| any_dataset | bool | [optional] | |
| status | str | [optional] |
from gateway_api_sdk.models.create_tools_request import CreateToolsRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateToolsRequest from a JSON string
create_tools_request_instance = CreateToolsRequest.from_json(json)
# print the JSON string representation of the object
print(CreateToolsRequest.to_json())
# convert the object into a dict
create_tools_request_dict = create_tools_request_instance.to_dict()
# create an instance of CreateToolsRequest from a dict
create_tools_request_from_dict = CreateToolsRequest.from_dict(create_tools_request_dict)