@cbnsndwch/ghl-app-contracts
Version:
Data contracts for GHL Marketplace apps
14 lines (13 loc) • 339 B
TypeScript
/**
* The types of end-users the GHL platform supports.
*/
export declare enum UserType {
/**
* An agency-level user. Can access all locations as well as the agency area.
*/
AGENCY = "agency",
/**
* A location-level user. Can only access the locations they are assigned to.
*/
LOCATION = "location"
}