sunrise-cms/database/updateFee.d.ts

19 lines
500 B
TypeScript

interface UpdateFeeForm {
feeId: string;
feeCategoryId: string;
feeName: string;
feeDescription: string;
feeAccount: string;
occupancyTypeId: string;
lotTypeId: string;
feeAmount?: string;
feeFunction?: string;
taxAmount?: string;
taxPercentage?: string;
includeQuantity: '' | '1';
quantityUnit?: string;
isRequired: '' | '1';
}
export declare function updateFee(feeForm: UpdateFeeForm, user: User): Promise<boolean>;
export default updateFee;