import { actions } from "./Action"; export const desc = { attributes: { accountId: { notNull: true, type: "ref", ref: "account" }, planId: { notNull: true, type: "ref", ref: "settlePlan" }, price: { notNull: true, type: "money" }, settledAt: { type: "datetime" }, closedAt: { type: "datetime" }, iState: { notNull: true, type: "enum", enumeration: ["unsettled", "settled", "closed"] } }, actionType: "crud", actions };