ETASCOM CRM V3 - Documentation API
    Preparing search index...

    Interface PayslipLine

    interface PayslipLine {
        id: string;
        payslipId: string;
        type:
            | "TAX"
            | "SALARY"
            | "BONUS"
            | "DEDUCTION"
            | "OVERTIME"
            | "ALLOWANCE"
            | "INSURANCE"
            | "RETIREMENT";
        description: string;
        amount: number;
        quantity: number;
        rate: number;
        isTaxable: boolean;
        createdAt: string;
    }
    Index

    Properties

    id: string
    payslipId: string
    type:
        | "TAX"
        | "SALARY"
        | "BONUS"
        | "DEDUCTION"
        | "OVERTIME"
        | "ALLOWANCE"
        | "INSURANCE"
        | "RETIREMENT"
    description: string
    amount: number
    quantity: number
    rate: number
    isTaxable: boolean
    createdAt: string