amazon-pay-async
Version:
API wrapper for Amazon Pay using promises and defining types
10 lines (9 loc) • 445 B
TypeScript
import { IBillingAgreementAttributes } from './entities/billing.agreement.attributes.type';
import { IBillingAgreementDetails } from './entities/billing.agreement.details.type';
export interface ISetBillingAgreementDetailsRequest {
AmazonBillingAgreementId: string;
BillingAgreementAttributes: IBillingAgreementAttributes;
}
export interface ISetBillingAgreementDetailsResponse {
BillingAgreementDetails: IBillingAgreementDetails;
}