(cls, dict_)
| 47 | |
| 48 | |
| 49 | def round_trip_dict(cls, dict_): |
| 50 | obj = cls.object_from_dict(dict_) |
| 51 | dict2 = cls.dict_from_object(obj) |
| 52 | |
| 53 | api_obj = cls.from_dict(dict_) |
| 54 | dict2 = cls.to_dict(api_obj) |
| 55 | return dict2 |
| 56 | |
| 57 | |
| 58 | def round_trip(o, output=False, list_=False): |