| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- /**
- BTPaymentMethodNonce is for generic tokenized payment information.
- For example, if a customer's vaulted payment methods contains a type that's not recognized or supported by the
- Braintree SDK or the client-side integration (e.g. the vault contains a PayPal account but the client-side
- integration does not include the PayPal component), this type can act as a fallback.
- The payment method nonce is a public token that acts as a placeholder for sensitive payments data that
- has been uploaded to Braintree for subsequent processing. The nonce is safe to access on the client and can be
- used on your server to reference the data in Braintree operations, such as Transaction.sale.
- */
- @interface BTPaymentMethodNonce : NSObject
- /**
- Initialize a new Payment Method Nonce.
- @param nonce A transactable payment method nonce.
- @param description A human-readable description.
- @param type A string identifying the type of the payment method.
- @return A Payment Method Nonce, or `nil` if nonce is nil.
- */
- - (nullable instancetype)initWithNonce:(NSString *)nonce localizedDescription:(nullable NSString *)description type:(NSString *)type;
- /**
- Initialize a new Payment Method Nonce.
- @param nonce A transactable payment method nonce.
- @param description A human-readable description.
- @return A Payment Method Nonce, or `nil` if nonce is nil.
- */
- - (nullable instancetype)initWithNonce:(NSString *)nonce localizedDescription:(nullable NSString *)description;
- /**
- Initialize a new Payment Method Nonce.
- @param nonce A transactable payment method nonce.
- @param description A human-readable description.
- @param type A string identifying the type of the payment method.
- @param isDefault A boolean indicating whether this is a default payment method.
- @return A Payment Method Nonce, or `nil` if nonce is nil.
- */
- - (nullable instancetype)initWithNonce:(NSString *)nonce localizedDescription:(NSString *)description type:(nonnull NSString *)type isDefault:(BOOL)isDefault;
- /**
- The one-time use payment method nonce
- */
- @property (nonatomic, readonly, copy) NSString *nonce;
- /**
- A localized description of the payment info
- */
- @property (nonatomic, readonly, copy) NSString *localizedDescription;
- /**
- The type of the tokenized data, e.g. PayPal, Venmo, MasterCard, Visa, Amex
- */
- @property (nonatomic, readonly, copy) NSString *type;
- /**
- True if this nonce is the customer's default payment method, otherwise false.
- */
- @property (nonatomic, readonly, assign) BOOL isDefault;
- @end
- NS_ASSUME_NONNULL_END
|