@lomray/microservice-payment-stripe
Version:
Stripe payment microservice based on NodeJS & inverted json.
15 lines (14 loc) • 393 B
TypeScript
import Price from "../../entities/price.js";
declare class PriceCreateInput {
productId: string;
currency: string;
userId: string;
unitAmount: number;
}
/**
* Create new price
*/
declare const create: import("@lomray/microservice-helpers/services/endpoint").IReturnWithMeta<never, PriceCreateInput, Record<string, any>, {
entity: Price;
}>;
export { create as default };