@@ -1021,9 +1021,6 @@ def authenticate(self, source, options={}):
10211021 data = {
10221022 'device' : self .device ,
10231023 'incremental' : self .incremental ,
1024- 'capture_type' : self .capture_type ,
1025- 'split_allocations' : self .split_allocations ,
1026- 'installment_plan_id' : self .installment_plan_id ,
10271024 'synchronous' : options .get ("synchronous" ),
10281025 'retry_drop_liability_shift' : options .get ("retry_drop_liability_shift" ),
10291026 'capture_amount' : options .get ("capture_amount" ),
@@ -1090,9 +1087,6 @@ def authorize(self, source, options={}):
10901087 data = {
10911088 'device' : self .device ,
10921089 'incremental' : self .incremental ,
1093- 'capture_type' : self .capture_type ,
1094- 'split_allocations' : self .split_allocations ,
1095- 'installment_plan_id' : self .installment_plan_id ,
10961090 'synchronous' : options .get ("synchronous" ),
10971091 'retry_drop_liability_shift' : options .get ("retry_drop_liability_shift" ),
10981092 'capture_amount' : options .get ("capture_amount" ),
@@ -1133,9 +1127,7 @@ def capture(self, source, options={}):
11331127 path = "/invoices/" + quote_plus (self .id ) + "/capture"
11341128 data = {
11351129 'device' : self .device ,
1136- 'authenticate_only' : self .authenticate_only ,
11371130 'incremental' : self .incremental ,
1138- 'installment_plan_id' : self .installment_plan_id ,
11391131 'authorize_only' : options .get ("authorize_only" ),
11401132 'synchronous' : options .get ("synchronous" ),
11411133 'retry_drop_liability_shift' : options .get ("retry_drop_liability_shift" ),
@@ -1450,8 +1442,7 @@ def create(self, options={}):
14501442 'unsupported_feature_bypass' : self .unsupported_feature_bypass ,
14511443 'verification' : self .verification ,
14521444 'auto_capture_at' : self .auto_capture_at ,
1453- 'expires_at' : self .expires_at ,
1454- 'split_allocations' : self .split_allocations
1445+ 'expires_at' : self .expires_at
14551446 }
14561447
14571448 response = Response (request .post (path , data , options ))
0 commit comments