(dictionary, key_list, default_value=None)
| 915 | |
| 916 | @staticmethod |
| 917 | def safe_string_n(dictionary, key_list, default_value=None): |
| 918 | value = Exchange.get_object_value_from_key_list(dictionary, key_list) |
| 919 | return str(value) if value is not None else default_value |
| 920 | |
| 921 | @staticmethod |
| 922 | def safe_string_lower_n(dictionary, key_list, default_value=None): |