amazon-pay-async
Version:
API wrapper for Amazon Pay using promises and defining types
13 lines (12 loc) • 382 B
TypeScript
import { ICaptureDetails } from './entities/capture.details.type';
import { IPrice } from './entities/price.type';
export interface ICaptureRequest {
AmazonAuthorizationId: string;
CaptureReferenceId: string;
CaptureAmount: IPrice;
SellerCaptureNote?: string;
SoftDescriptor?: string;
}
export interface ICaptureResponse {
CaptureDetails: ICaptureDetails;
}