UNPKG

salesforce-alm

Version:

This package contains tools, and APIs, for an improved salesforce.com developer experience.

19 lines (18 loc) 353 B
import { CommunityStatus } from './CommunityStatusEnum'; /** * A definition of a community */ export declare type CommunityInfo = { /** * Community name */ name: string; /** * Community ID */ id: string; /** * Community Status (Active/Inactive/DownForMaintainance) */ status?: CommunityStatus; };