Avoid wrapper class e.g. `post(Text(my_str))` -> `post(my_str)` `post(Temperature(temp))` -> `post_temp(temp)`
Avoid wrapper class
e.g.
post(Text(my_str))->post(my_str)post(Temperature(temp))->post_temp(temp)