@apicart/store-sdk
Version:
Apicart SDK for integrating store into any web application
25 lines (13 loc) • 414 B
TypeScript
import PaymentMethod from '../../../Entity/Payment/PaymentMethod';
interface PaymentMethodDaoInterface
{
getEntity(): Promise<PaymentMethod>;
getId(): number;
getUid(): Promise<string|null>;
getName(): Promise<string>;
getDescription(): Promise<string | null>;
getImage(): Promise<string | null>;
getPrice(): Promise<number>;
getSort(): Promise<number | null>;
isEnabled(): Promise<boolean>;
}