| Name |
Type |
Description |
Notes |
| documentation_url |
DocumentationUrl |
|
[optional] |
| name |
object |
The name of the specific connector to which this ConnectorSpecification belongs. |
|
| module_name |
object |
Name of the python module for this connector |
|
| connection_specification |
object |
ConnectorDefinition specific blob. Must be a valid JSON string. |
|
from dat_client.models.connector_specification import ConnectorSpecification
# TODO update the JSON string below
json = "{}"
# create an instance of ConnectorSpecification from a JSON string
connector_specification_instance = ConnectorSpecification.from_json(json)
# print the JSON string representation of the object
print(ConnectorSpecification.to_json())
# convert the object into a dict
connector_specification_dict = connector_specification_instance.to_dict()
# create an instance of ConnectorSpecification from a dict
connector_specification_form_dict = connector_specification.from_dict(connector_specification_dict)
[Back to Model list] [Back to API list] [Back to README]