/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { Address } from './address.js'; import { CardBrand } from './cardBrand.js'; import { CardType } from './cardType.js'; /** The payment card to be used to fund a payment. Can be a credit or debit card. */ export interface ApplePayRequestCard { /** Type of card. i.e Credit, Debit and so on. */ type?: CardType; /** The card network or brand. Applies to credit, debit, gift, and payment cards. */ brand?: CardBrand; /** The portable international postal address. Maps to [AddressValidationMetadata](https://github.com/googlei18n/libaddressinput/wiki/AddressValidationMetadata) and HTML 5.1 [Autofilling form controls: the autocomplete attribute](https://www.w3.org/TR/html51/sec-forms.html#autofilling-form-controls-the-autocomplete-attribute). */ billingAddress?: Address; } export declare const applePayRequestCardSchema: Schema; //# sourceMappingURL=applePayRequestCard.d.ts.map