Skip to content

Commit

Permalink
Add date to data type constants
Browse files Browse the repository at this point in the history
  • Loading branch information
antonioIrizar committed Oct 10, 2019
1 parent 75b725b commit feadd3a
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 feadd3a

Please sign in to comment.