File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed
Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 11# coding: utf-8
22
3- import datetime
43import json
54import logging
65import sys
76
87from six import string_types
98from six .moves .urllib .parse import quote_plus
109
11- from . import (
12- api_requestor ,
13- error ,
14- util ,
15- )
10+ from payjp import api_requestor , error , util
1611
1712logger = logging .getLogger ('payjp' )
1813
@@ -337,6 +332,10 @@ def reauth(self, **kwargs):
337332 self .refresh_from (self .request ('post' , url , kwargs ))
338333 return self
339334
335+ def tds_finish (self , ** kwargs ):
336+ url = self .instance_url () + '/tds_finish'
337+ self .refresh_from (self .request ('post' , url , kwargs ))
338+ return self
340339
341340class Event (ListableAPIResource ):
342341 pass
Original file line number Diff line number Diff line change 1- VERSION = '0.1 .0'
1+ VERSION = '0.2 .0'
Original file line number Diff line number Diff line change 1414
1515setup (
1616 name = "payjp" ,
17- version = "0.1 .0" ,
17+ version = "0.2 .0" ,
1818 description = 'PAY.JP python bindings' ,
1919 author = "PAY.JP" ,
2020 author_email = 'support@pay.jp' ,
You can’t perform that action at this time.
0 commit comments