IPWorks OFX 2020 Python Edition

Questions / Feedback?

transfer_date_due Property

Date the bank transfer (being initiated, modified or synchronized) is scheduled to be sent.

Syntax

def get_transfer_date_due() -> str: ...
def set_transfer_date_due(value: str) -> None: ...

transfer_date_due = property(get_transfer_date_due, set_transfer_date_due)

Default Value

""

Remarks

Date the bank transfer (being initiated, modified or synchronized) is scheduled to be sent.

This can be provided when sending a bank transfer request (initiating or modifying a transfer when either on_transfer_funds or on_modify_transfer methods are called. In these cases, if the transfer_date_due is not specified in the request, the transfer is considered immediate by the server and it occurs as soon as possible. However, this is required for scheduled transfers.

This is also returned in the server response when these methods are called. However, the value may have been adjusted by the server. For example, the server may adjust due date to comply with non-processing days. If a client sends a request to make a transfer on July 4 and July 4 happens to be a non-processing day, the due date in the response may be July 4 (because the server hasn't adjusted it yet), July 5 (because this server rolls dates forward), or some other date. For this reason, the transfer_date_due should be inspected as well.

It may also be returned for each payment being synchronized (when the on_synchronize_transfers methods is called) only if it was specified in the original bank transfer request. These values should be inspected as well as might be different from their original values (for the same reason mentioned above).

Note: Immediate intrabank funds transfers cannot be canceled as they are already committed.

All input dates should be entered in the format specified by DateFormat. For example, if the DateFormat is set to "MM/dd/yyyy hh:mm:ss" (default value), an input date should look like: 09/30/2009 12:00:00 AM.

This format specifies also how the returned dates are going to get parsed.

Copyright (c) 2021 /n software inc. - All rights reserved.
IPWorks OFX 2020 Python Edition - Version 20.0 [Build 7941]