-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Visa Account Funding Transactions #9
base: main
Are you sure you want to change the base?
Conversation
payments/index.md
Outdated
name: String, // optional, length: 1..1024 | ||
address: String, // optional, length: 1..1024 | ||
city: String, // optional, length: 1..1024 | ||
state: String, // optional, length: 1..1024 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe at least the state
(as is the country) should be expected as {2,2}
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That sounds reasonable..
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So, I changed it to be an actual ISO code instead:
The second part is a string of up to three alphanumeric characters
The stricter requirements for AFTs (two letters) is valid for US and CA.
No description provided.