Update tokenize payload to reflect 3.26.0

See the tokenize payload documentation: http://braintree.github.io/braintree-web/current/HostedFields.html#~tokenizePayload
This commit is contained in:
Graham Marlow
2017-11-15 09:18:21 -08:00
committed by GitHub
parent ccf298a35a
commit b25bc3a481

View File

@@ -611,12 +611,14 @@ declare namespace braintree {
* @property {object} details Additional account details.
* @property {string} details.cardType Type of card, ex: Visa, MasterCard.
* @property {string} details.lastTwo Last two digits of card number.
* @property {string} details.lastFour Last four digits of card number.
* @property {string} description A human-readable description.
* @property {string} type The payment method type, always `CreditCard`.
*/
interface HostedFieldsAccountDetails {
cardType: string;
lastTwo: string;
lastFour: string;
}
interface HostedFieldsTokenizePayload {