class TestClass(object):
    a = HashidDescriptor(field_name='a',
                         salt=salt,
                         min_length=min_length,
                         alphabet=alphabet,
                         hashids=hashids)
    b = HashidDescriptor(field_name='b',
                         salt=salt,
                         min_length=min_length,
                         alphabet=alphabet,
                         hashids=hashids,
                         enable_hashid_object=False)
 class AlphaTest(object):
     hashid = HashidDescriptor('_hashid', alphabet="0123456789abcdef")
class TestClass(object):
    hashid = HashidDescriptor('hashid')
 class LengthTest(object):
     hashid = HashidDescriptor('_hashid', min_length=10)
 class SaltTest(object):
     hashid = HashidDescriptor('_hashid', salt='a test salt')