Skip to content

Commit

Permalink
Add agency chain to Booking
Browse files Browse the repository at this point in the history
  • Loading branch information
bartek committed Jan 10, 2018
1 parent 8fea534 commit b4e1062
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions gapipy/resources/booking/booking.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
from gapipy.resources.checkin import Checkin

from ..base import Resource
from .transaction import Payment, Refund
from .agency_chain import AgencyChain
from .document import Invoice, Document
from .override import Override
from .service import Service
from .transaction import Payment, Refund


class Booking(Resource):
Expand All @@ -28,8 +29,9 @@ class Booking(Resource):
]
_date_time_fields_utc = ['date_created', ]
_resource_fields = [
('agent', 'Agent'),
('agency', 'Agency'),
('agency_chain', AgencyChain),
('agent', 'Agent'),
('associated_agency', 'Agency'),
]

Expand Down

0 comments on commit b4e1062

Please sign in to comment.