Saxonberg Server API
    Preparing search index...

    Public method surface (methods only, per the inter-stuff contract). The proprietorPath / positions / rosterSlots / operatingLocations fields are public so the Hydrator can reflect into them, but they are NOT the contract surface — external code goes through these methods.

    interface Business {
        getAccountPath(): string;
        getOperatingLocations(): readonly string[];
        getPosition(key: string): Position | undefined;
        getPositions(): readonly Position[];
        getProprietor(): string | undefined;
        getRoster(): Roster;
        getRosterAssignments(): readonly RosterAssignment[];
    }
    Index

    Methods