amazon-pay-async
Version:
API wrapper for Amazon Pay using promises and defining types
11 lines (10 loc) • 463 B
TypeScript
import { IOrderTotal } from './order.total.type';
import { IPaymentServiceProviderAttributes } from './payment.service.provider.attributes.type';
import { ISellerOrderAttributes } from './seller.order.attributes.type';
export interface IOrderAttributes {
OrderTotal?: IOrderTotal;
PlatformID?: string;
SellerNote?: string;
SellerOrderAttributes?: ISellerOrderAttributes;
PaymentServiceProviderAttributes?: IPaymentServiceProviderAttributes;
}