CalOohPay API Documentation - v2.1.0
    Preparing search index...

    Interface RatesConfig

    Configuration structure for compensation rates.

    Defines the monetary compensation for out-of-hours on-call duty, distinguishing between weekday and weekend rates.

    const defaultRates: RatesConfig = {
    weekdayRate: 50,
    weekendRate: 75,
    currency: 'GBP'
    };
    interface RatesConfig {
        currency?: string;
        weekdayRate: number;
        weekendRate: number;
    }
    Index

    Properties

    currency?: string

    Currency code (e.g., 'GBP', 'USD', 'EUR'). Optional.

    weekdayRate: number

    Compensation for OOH weekday shifts (Monday-Thursday)

    weekendRate: number

    Compensation for OOH weekend shifts (Friday-Sunday)