Exemplo n.º 1
0
class StoreCache(ndb.Model):
    cache_key = ndb.StringProperty()
    response = ndb.PickleProperty()
    last_accessed = ndb.IntegerProperty()
Exemplo n.º 2
0
 class SomeKind(ndb.Model):
     foo = ndb.PickleProperty()
Exemplo n.º 3
0
class B(ndb.Model):
    sub_model = ndb.PickleProperty()