import { Amount } from './Amount'; import { PaymentOutcome } from './PaymentOutcome'; export declare class PaymentOperation { id?: string; amount?: Amount; outcome?: PaymentOutcome; constructor(paymentOperation: PaymentOperationProperties); } export interface PaymentOperationProperties { id?: string; amount?: Amount; outcome?: PaymentOutcome; }