import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export declare class ApplePay extends ClientSDK { /** * Add domains to be registered with Apple Pay. * * Any domains that will be used to accept payments must first be [verified](https://docs.moov.io/guides/sources/cards/apple-pay/#register-your-domains) * with Apple. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/apple-pay.write` scope. */ registerMerchantDomains(request: operations.RegisterApplePayMerchantDomainsRequest, options?: RequestOptions): Promise; /** * Add or remove domains to be registered with Apple Pay. * * Any domains that will be used to accept payments must first be [verified](https://docs.moov.io/guides/sources/cards/apple-pay/#register-your-domains) * with Apple. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/apple-pay.write` scope. */ updateMerchantDomains(request: operations.UpdateApplePayMerchantDomainsRequest, options?: RequestOptions): Promise; /** * Get domains registered with Apple Pay. * * Read our [Apple Pay tutorial](https://docs.moov.io/guides/sources/cards/apple-pay/#register-your-domains) to learn more. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/apple-pay.read` scope. */ getMerchantDomains(request: operations.GetApplePayMerchantDomainsRequest, options?: RequestOptions): Promise; /** * Create a session with Apple Pay to facilitate a payment. * * Read our [Apple Pay tutorial](https://docs.moov.io/guides/sources/cards/apple-pay/#register-your-domains) to learn more. * A successful response from this endpoint should be passed through to Apple Pay unchanged. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/apple-pay.write` scope. */ createSession(request: operations.CreateApplePaySessionRequest, options?: RequestOptions): Promise; /** * Connect an Apple Pay token to the specified account. * * Read our [Apple Pay tutorial](https://docs.moov.io/guides/sources/cards/apple-pay/#register-your-domains) to learn more. * The `token` data is defined by Apple Pay and should be passed through from Apple Pay's response unmodified. * * To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/) * you'll need to specify the `/accounts/{accountID}/cards.write` scope. */ linkToken(request: operations.LinkApplePayTokenRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=applepay.d.ts.map