@@ -402,7 +402,7 @@ def authorize(self, source, options = {}):
402402
403403 body = response .body
404404 body = body ["transaction" ]
405- transaction = Transaction (self ._client )
405+ transaction = processout . Transaction (self ._client )
406406 return_values .append (transaction .fill_with_data (body ))
407407
408408
@@ -428,7 +428,7 @@ def capture(self, source, options = {}):
428428
429429 body = response .body
430430 body = body ["transaction" ]
431- transaction = Transaction (self ._client )
431+ transaction = processout . Transaction (self ._client )
432432 return_values .append (transaction .fill_with_data (body ))
433433
434434
@@ -452,7 +452,7 @@ def fetch_customer(self, options = {}):
452452
453453 body = response .body
454454 body = body ["customer" ]
455- customer = Customer (self ._client )
455+ customer = processout . Customer (self ._client )
456456 return_values .append (customer .fill_with_data (body ))
457457
458458
@@ -476,7 +476,7 @@ def assign_customer(self, customer_id, options = {}):
476476
477477 body = response .body
478478 body = body ["customer" ]
479- customer = Customer (self ._client )
479+ customer = processout . Customer (self ._client )
480480 return_values .append (customer .fill_with_data (body ))
481481
482482
@@ -500,7 +500,7 @@ def fetch_transaction(self, options = {}):
500500
501501 body = response .body
502502 body = body ["transaction" ]
503- transaction = Transaction (self ._client )
503+ transaction = processout . Transaction (self ._client )
504504 return_values .append (transaction .fill_with_data (body ))
505505
506506
@@ -524,7 +524,7 @@ def void(self, options = {}):
524524
525525 body = response .body
526526 body = body ["transaction" ]
527- transaction = Transaction (self ._client )
527+ transaction = processout . Transaction (self ._client )
528528 return_values .append (transaction .fill_with_data (body ))
529529
530530
@@ -549,7 +549,7 @@ def all(self, options = {}):
549549 a = []
550550 body = response .body
551551 for v in body ['invoices' ]:
552- tmp = Invoice (self ._client )
552+ tmp = processout . Invoice (self ._client )
553553 tmp .fill_with_data (v )
554554 a .append (tmp )
555555
0 commit comments