from kalshi_python.models.get_communications_id_response import GetCommunicationsIDResponse# Create an instance with example dataget_communications_id_response_instance = GetCommunicationsIDResponse( # Add required fields here)# Convert to JSON stringjson_str = get_communications_id_response_instance.to_json()print(json_str)# Create from JSON stringget_communications_id_response_from_json = GetCommunicationsIDResponse.from_json(json_str)# Convert to dictget_communications_id_response_dict = get_communications_id_response_instance.to_dict()# Create from dictget_communications_id_response_from_dict = GetCommunicationsIDResponse.from_dict(get_communications_id_response_dict)