Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions lib/invoice.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,11 @@ declare class Invoice {
* @type {boolean}
*/
private verification;
/**
* A timestamp to indicate when an auto capture should take place following an authorization. This takes priority over the value sent in the authorization request.
* @type {string}
*/
private autoCaptureAt;
/**
* Invoice constructor
* @param {ProcessOut} client
Expand Down Expand Up @@ -855,6 +860,19 @@ declare class Invoice {
* @return {Invoice}
*/
setVerification(val: boolean): Invoice;
/**
* Get AutoCaptureAt
* A timestamp to indicate when an auto capture should take place following an authorization. This takes priority over the value sent in the authorization request.
* @return {string}
*/
getAutoCaptureAt(): string;
/**
* Set AutoCaptureAt
* A timestamp to indicate when an auto capture should take place following an authorization. This takes priority over the value sent in the authorization request.
* @param {string} val
* @return {Invoice}
*/
setAutoCaptureAt(val: string): Invoice;
/**
* Fills the current object with the new values pulled from the data
* @param {array} data
Expand Down
2 changes: 1 addition & 1 deletion lib/invoice.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 28 additions & 1 deletion lib/invoice.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/invoice.js.map

Large diffs are not rendered by default.

Loading