import { CheckoutNetworkTokenOption } from "./checkoutNetworkTokenOption"; export declare class CheckoutForwardRequestOptions { /** * Whether to check for a card account update (true) or not (false) */ "accountUpdate"?: boolean; /** * Set to **true** to receive a copy of the request Adyen is making to the third party in the response. Any sensitive information will be masked in the response you receive. This functionality is only available in the test environment. */ "dryRun"?: boolean; "networkToken"?: CheckoutNetworkTokenOption | null; /** * Set in tokenize:true case when forwarding PAN. Addresses to the possible location(s) of networkTxReference in the incoming 3rd party response */ "networkTxReferencePaths"?: Array; /** * Set to **true**, the payment details are [tokenized](https://docs.adyen.com/online-payments/tokenization). */ "tokenize"?: boolean; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }