Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.84 KB

Marketo.md

File metadata and controls

34 lines (27 loc) · 1.84 KB

Marketo

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]