amazon-pay-async
Version:
API wrapper for Amazon Pay using promises and defining types
13 lines (12 loc) • 367 B
TypeScript
import { IPrice } from './entities/price.type';
import { IRefundDetails } from './entities/refund.details.type';
export interface IRefundRequest {
AmazonCaptureId: string;
RefundReferenceId: string;
RefundAmount: IPrice;
SellerRefundNote?: string;
SoftDescriptor?: string;
}
export interface IRefundResponse {
RefundDetails: IRefundDetails;
}