Created
March 9, 2021 01:34
-
-
Save thanakijwanavit/c105238734352332259f9836dc2ec163 to your computer and use it in GitHub Desktop.
Attributes pynamodb enum
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from pynamodb_attributes import UnicodeEnumAttribute | |
| from pynamodb.models import Model | |
| from enum import Enum | |
| class ShippingType(Enum): | |
| delivery = 'DELIVERY' | |
| pickUp = 'PICKUP' | |
| class PynamoClass(Model): | |
| shippingType = UnicodeEnumAttribute(ShippingType, null=True) # enum shipping type |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment