amazon-pay-async
Version:
API wrapper for Amazon Pay using promises and defining types
9 lines (8 loc) • 318 B
TypeScript
import { IBillingAgreementDetails } from './entities/billing.agreement.details.type';
export interface IGetBillingAgreementDetailsRequest {
AmazonBillingAgreementId: string;
AccessToken?: string;
}
export interface IGetBillingAgreementDetailsResponse {
BillingAgreementDetails: IBillingAgreementDetails;
}