Skip to content

Commit

Permalink
Merge pull request #65 from aplazame/feature/globals
Browse files Browse the repository at this point in the history
Add date to data type constants
  • Loading branch information
jpetrucciani committed Oct 10, 2019
2 parents 75b725b + feadd3a commit cbedc6f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions hubspot3/globals.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,15 @@

DATA_TYPE_BOOL = "bool"
DATA_TYPE_DATETIME = "datetime"
DATA_TYPE_DATE = "date"
DATA_TYPE_ENUM = "enumeration"
DATA_TYPE_NUMBER = "number"
DATA_TYPE_STRING = "string"

VALID_PROPERTY_DATA_TYPES = (
DATA_TYPE_BOOL,
DATA_TYPE_DATETIME,
DATA_TYPE_DATE,
DATA_TYPE_ENUM,
DATA_TYPE_NUMBER,
DATA_TYPE_STRING,
Expand Down

0 comments on commit cbedc6f

Please sign in to comment.