interface RefundSummary {
    createdAt?: Date;
    id: number;
    method: RefundMethod;
    refundedAt?: Date;
    status: RefundStatus;
    totalWithTaxes?: Money;
    totalWithoutTaxes?: Money;
}

Properties

createdAt?: Date
id: number
method: RefundMethod
refundedAt?: Date
status: RefundStatus
totalWithTaxes?: Money
totalWithoutTaxes?: Money