UNPKG

amazon-pay-async

Version:

API wrapper for Amazon Pay using promises and defining types

9 lines (8 loc) 318 B
import { IBillingAgreementDetails } from './entities/billing.agreement.details.type'; export interface IGetBillingAgreementDetailsRequest { AmazonBillingAgreementId: string; AccessToken?: string; } export interface IGetBillingAgreementDetailsResponse { BillingAgreementDetails: IBillingAgreementDetails; }