UNPKG

@tomei/rental

Version:
19 lines (18 loc) 585 B
import { ObjectBase } from '@tomei/general'; import { LoginUser } from '@tomei/sso'; export declare class RentalPrice extends ObjectBase { ObjectId: string; ObjectName: string; ObjectType: string; TableName: string; RetailPrice: number; Currency: string; PromoCode: string; Remarks: string; get PriceId(): string; set PriceId(value: string); private static _Repo; private constructor(); static init(dbTransaction?: any, priceId?: string): Promise<RentalPrice>; create(loginUser: LoginUser, dbTransaction?: any): Promise<this>; }