Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.92 KB

MarketoAllOf.md

File metadata and controls

34 lines (27 loc) · 1.92 KB

MarketoAllOf

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_all_of import MarketoAllOf

# TODO update the JSON string below
json = "{}"
# create an instance of MarketoAllOf from a JSON string
marketo_all_of_instance = MarketoAllOf.from_json(json)
# print the JSON string representation of the object
print MarketoAllOf.to_json()

# convert the object into a dict
marketo_all_of_dict = marketo_all_of_instance.to_dict()
# create an instance of MarketoAllOf from a dict
marketo_all_of_from_dict = MarketoAllOf.from_dict(marketo_all_of_dict)

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