In what ways we can create a nested map in cqlengine models, For e.g
class Test(Model):
id = columns.UUID(primary_key=True, default=uuid.uuid4)
address = columns.Map(key_type, value_type)
I want "value_type"(in address column) to be a dictionary again, how should we achieve this using cqlengine data modelling.