UNPKG

@omnia/fx-models

Version:
14 lines (13 loc) 805 B
import { AnalyticsDimensionMapping } from "./AnalyticsDimensionMappings"; import { GuidValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models"; import { BusinessProfileProperty } from "./../BusinessProfile"; export declare class BusinessProfileAnalyticsSettings extends BusinessProfileProperty { enabled: boolean; idSite: number; mappings: AnalyticsDimensionMapping[]; shared: boolean; connectedBusinessProfileId?: GuidValue; constructor(); static checkIfAnalyticsSwitchToDisabled: (currenttSetting: BusinessProfileAnalyticsSettings, targetSetting: BusinessProfileAnalyticsSettings) => boolean; static checkIfAnalyticsSwitchToEnabled: (currenttSetting: BusinessProfileAnalyticsSettings, targetSetting: BusinessProfileAnalyticsSettings) => boolean; }