| Name | Type | Description | Notes |
|---|---|---|---|
| api_key | str | ||
| api_secret | str | ||
| identity_url | str | ||
| connector_type | str | ||
| variables | List[VariableDto] | [optional] | |
| segmentation_mapping | MarketoSegmentationMappingDto | [optional] | |
| translate_tokens | bool | [optional] | |
| debug_mode | bool | [optional] |
from phrasetms_client.models.marketo import Marketo
# TODO update the JSON string below
json = "{}"
# create an instance of Marketo from a JSON string
marketo_instance = Marketo.from_json(json)
# print the JSON string representation of the object
print Marketo.to_json()
# convert the object into a dict
marketo_dict = marketo_instance.to_dict()
# create an instance of Marketo from a dict
marketo_from_dict = Marketo.from_dict(marketo_dict)