import { actions } from "./Action"; export const desc = { attributes: { price: { notNull: true, type: "money" }, loss: { notNull: true, type: "money" }, accountId: { notNull: true, type: "ref", ref: "account" }, creatorId: { notNull: true, type: "ref", ref: "user" }, shipId: { type: "ref", ref: "ship" }, iState: { type: "enum", enumeration: ["depositing", "successful", "failed", "shipped"] } }, actionType: "crud", actions };