@rnw-community/react-native-payments
Version:
Accept Payments with Apple Pay and Android Pay using the Payment Request API.
12 lines (10 loc) • 366 B
text/typescript
import type { AndroidMinAddress } from './android-min-address';
// https://developers.google.com/pay/api/android/reference/response-objects#Address
export interface AndroidFullAddress extends AndroidMinAddress {
address1?: string;
address2?: string;
address3?: string;
administrativeArea?: string;
locality?: string;
sortingCode?: string;
}