18 lines
481 B
TypeScript
18 lines
481 B
TypeScript
export 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 default function updateFee(feeForm: UpdateFeeForm, user: User): Promise<boolean>;
|