Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.68 KB

File metadata and controls

33 lines (25 loc) · 1.68 KB

RouteTransformSettings

Settings for transforming route payloads before delivery. Supports format selection and JSONata-based transformations.

Properties

Name Type Description Notes
format str Output format for transformed data (e.g., "json", "xml", "text"). [optional]
jsonata str JSONata expression used to transform the data payload (outgoing). [optional]
jsonata_in str JSONata expression used to transform the data payload (incoming). [optional]

Example

from notehub_py.models.route_transform_settings import RouteTransformSettings

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

# convert the object into a dict
route_transform_settings_dict = route_transform_settings_instance.to_dict()
# create an instance of RouteTransformSettings from a dict
route_transform_settings_from_dict = RouteTransformSettings.from_dict(
    route_transform_settings_dict
)

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