ilya_sapunov
06/06/2022, 4:18 PMth.Property(
"car_info",
th.ObjectType(
th.Property("mark", th.StringType),
th.Property("model", th.StringType)
)
),
but I get {"car_info": {"body_type": "ALLROAD_5_DOORS", "engine_type": "DIESEL", "mark": "PORSCHE", "model": "CAYENNE"}}
How can I skip fields that I don’t need?aaronsteers
06/06/2022, 5:41 PMpost_process() to remove or "pop" the properties you don't want to pass on.ilya_sapunov
06/06/2022, 5:48 PMaaronsteers
06/06/2022, 7:11 PMaaronsteers
06/06/2022, 7:12 PMignored_properties as a set of property paths. A lighter weight way of telling the SDK "I know these fields exist and yes, I'm ignoring them on purpose. 🙂 "