Protect - Interface for methods to interact with the PingOne Signals SDK

interface Protect {
    getData: () => Promise<string>;
    pauseBehavioralData: () => void;
    resumeBehavioralData: () => void;
    start: () => Promise<void>;
}

Properties

getData: () => Promise<string>

Type declaration

    • (): Promise<string>
    • Returns Promise<string>

      • Returns the device data

getData - Method to get the device data

pauseBehavioralData: () => void

Type declaration

    • (): void
    • Returns void

pauseBehavioralData - Method to pause the behavioral data collection

Pause the behavioral data collection only; device profile data will still be collected

resumeBehavioralData: () => void

Type declaration

    • (): void
    • Returns void

resumeBehavioralData - Method to resume the behavioral data collection

Resume the behavioral data collection

start: () => Promise<void>

Type declaration

    • (): Promise<void>
    • Returns Promise<void>

      • Returns a promise

start - Method to initialize and start the PingOne Signals SDK