amazon-pay-async
Version:
API wrapper for Amazon Pay using promises and defining types
15 lines (14 loc) • 443 B
TypeScript
import { RefundType } from '../enums/refund.type.enum';
import { IPrice } from './price.type';
import { IRefundStatus } from './refund.status.type';
export interface IRefundDetails {
AmazonRefundId: string;
RefundReferenceId: string;
SellerRefundNote: string;
RefundType: RefundType;
RefundAmount: IPrice;
FeeRefunded: IPrice;
CreationTimestamp: Date;
RefundStatus: IRefundStatus;
SoftDescriptor: string;
}