import { Amount } from './Amount'; /** * Data that describes issued refund that should be updated. */ export declare class IssuedRefundUpdateDetails { /** * Date and time when the 3rd party payment processor confirmed that a previously submitted payment refund has issued at the participating financial institutions. */ refundIssuedDateTime: Date; refundIssuedAmount: Amount; constructor(issuedRefundUpdateDetails: IssuedRefundUpdateDetailsProperties); } export interface IssuedRefundUpdateDetailsProperties { refundIssuedDateTime: Date; refundIssuedAmount: Amount; }