Skip to content

Commit

Permalink
Merge pull request #8 from Edvinas9/feature/BE-451-add-new-fields-to-…
Browse files Browse the repository at this point in the history
…order-schema

BE-451 checkInTime should actually be datetime, not just date
  • Loading branch information
tomrutherford-livestyled committed Feb 2, 2021
2 parents b901afe + 1673120 commit 4d7ea7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion livestyled/schemas/order.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ class Meta:
estimated_at = fields.AwareDateTime(data_key='estimated_at', allow_none=True, missing=None)
collection_date = fields.Date(data_key='collectionDate', allow_none=True, missing=None)
collection_preference_type = fields.String(data_key='collectionPreferenceType', allow_none=True, missing=None)
check_in_time = fields.Date(data_key='checkInTime', allow_none=True, missing=None)
check_in_time = fields.AwareDateTime(data_key='checkInTime', allow_none=True, missing=None)
fulfilment_point = RelatedResourceLinkField(schema=FulfilmentPointSchema, data_key='fulfilmentPoint', missing=None, microservice_aware=True)
seat_info = fields.Raw(data_key='seatInfo', missing=None, allow_none=True)

0 comments on commit 4d7ea7f

Please sign in to comment.