![]() |
App Engine Python SDK
v1.6.9 rev.445
The Python runtime is available as an experimental Preview feature.
|
Public Member Functions | |
def | __init__ |
![]() | |
def | __init__ |
![]() | |
def | __init__ |
def | __repr__ |
def | __eq__ |
def | __ne__ |
def | __lt__ |
def | __le__ |
def | __gt__ |
def | __ge__ |
def | __neg__ |
def | __pos__ |
def | __get__ |
def | __set__ |
def | __delete__ |
Additional Inherited Members | |
![]() | |
IN = _IN | |
Property to store the 'class key' of a polymorphic class. The class key is a list of strings describing a polymorphic entity's place within its class hierarchy. This property is automatically calculated. For example: class Foo(PolyModel): ... class Bar(Foo): ... class Baz(Bar): ... Foo().class_ == ['Foo'] Bar().class_ == ['Foo', 'Bar'] Baz().class_ == ['Foo', 'Bar', 'Baz']
def google.appengine.ext.ndb.polymodel._ClassKeyProperty.__init__ | ( | self, | |
name = _CLASS_KEY_PROPERTY , |
|||
indexed = True |
|||
) |
Constructor. If you really want to you can give this a different datastore name or make it unindexed. For example: class Foo(PolyModel): class_ = _ClassKeyProperty(indexed=False)