コード例 #1
0
 def testdeletescheduledbyid(self):
     transactions.deletescheduledbyid('1234',
                                      alternate_token='AN OAUTH TOKEN',
                                      dwollaparse='dwolla')
     transactions.r._delete.assert_any_call(
         '/transactions/scheduled/1234', {'pin': 1234}, {
             'alternate_token': 'AN OAUTH TOKEN',
             'dwollaparse': 'dwolla'
         })
コード例 #2
0
 def testdeletescheduledbyid(self):
     transactions.deletescheduledbyid('1234', alternate_token='AN OAUTH TOKEN', dwollaparse='dwolla')
     transactions.r._delete.assert_any_call('/transactions/scheduled/1234', {'pin': 1234}, {'alternate_token':'AN OAUTH TOKEN', 'dwollaparse':'dwolla'})
コード例 #3
0
ファイル: transactions.py プロジェクト: Dwolla/dwolla-python
print transactions.editscheduledbyid('asr3r34t', {'amount': 10.50})
# Return: 
#     "Id": "asr3r34t",
#     "ScheduledDate": "2018-01-01",
#     "ExpectedClearingDate": "2018-01-06",
#     "TransactionId": null,
#     "Amount": 10.50,
#     "FundingSource": "5da016f7769bcc1de9998a30d194d5a7",
#     "AssumeCosts": false,
#     "Destination": {
#         "Id": "812-111-1111",
#         "Name": "Jane Doe",
#         "Type": "Dwolla",
#         "Image": "http://www.dwolla.com/avatars/812-111-1111"
#     },
#     "Status": "scheduled",
#     "CreatedDate": "2014-09-12T20:37:37Z",
#     "Metadata": {
#       "foo": "bar"
#     }

# Example 10: Delete scheduled transaction with ID
# 'id to delete'
print transactions.deletescheduledbyid('id to delete')
# Return: "id to delete"

# Example 11: Delete all scheduled transactions
print transactions.deleteallscheduled()
# Return
# ['deleted id 1', 'deleted id 2', 'deleted id 3']
コード例 #4
0
 def testdeletescheduledbyid(self):
     transactions.deletescheduledbyid('1234')
     transactions.r._delete.assert_any_call('/transactions/scheduled/1234', {'oauth_token': 'AN OAUTH TOKEN', 'pin': 1234}, dwollaparse='dwolla')
コード例 #5
0
print transactions.editscheduledbyid('asr3r34t', {'amount': 10.50})
# Return:
#     "Id": "asr3r34t",
#     "ScheduledDate": "2018-01-01",
#     "ExpectedClearingDate": "2018-01-06",
#     "TransactionId": null,
#     "Amount": 10.50,
#     "FundingSource": "5da016f7769bcc1de9998a30d194d5a7",
#     "AssumeCosts": false,
#     "Destination": {
#         "Id": "812-111-1111",
#         "Name": "Jane Doe",
#         "Type": "Dwolla",
#         "Image": "http://www.dwolla.com/avatars/812-111-1111"
#     },
#     "Status": "scheduled",
#     "CreatedDate": "2014-09-12T20:37:37Z",
#     "Metadata": {
#       "foo": "bar"
#     }

# Example 10: Delete scheduled transaction with ID
# 'id to delete'
print transactions.deletescheduledbyid('id to delete')
# Return: "id to delete"

# Example 11: Delete all scheduled transactions
print transactions.deleteallscheduled()
# Return
# ['deleted id 1', 'deleted id 2', 'deleted id 3']