/** * Finix API */ export declare class ApplePaySessionRequest { /** * This will be the merchant name shown to users when making a purchase via Apple Pay. */ 'displayName'?: string; /** * The domain (or website) where the buyer is initiating the payment. */ 'domain'?: string; /** * The `merchant_identity_id` used when registering the business with Apple Pay through our registration API. */ 'merchantIdentity'?: string; /** * A unique validation URL that will be provided by the Apple SDK front-end for every payment. */ 'validationUrl'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }