@rnw-community/react-native-payments
Version:
Accept Payments with Apple Pay and Android Pay using the Payment Request API.
11 lines (9 loc) • 364 B
text/typescript
// https://developers.google.com/pay/api/android/reference/response-objects#assurance-details-specifications
export interface AndroidAssuranceDetailsSpecifications {
accountVerified: boolean;
cardHolderAuthenticated: boolean;
}
export const emptyAndroidAssuranceDetailsSpecifications = {
accountVerified: false,
cardHolderAuthenticated: false,
};