import { Amount } from './Amount'; import { PaymentOutcome } from './PaymentOutcome'; import { VerificationType } from './VerificationType'; /** * A verify operation represents the intent to verify the payment associated with this transaction. */ export declare class Verify { id?: string; amount?: Amount; outcome?: PaymentOutcome; type?: VerificationType; constructor(verify: VerifyProperties); } export interface VerifyProperties { id?: string; amount?: Amount; outcome?: PaymentOutcome; type?: VerificationType; }