-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
93 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
enum 70254347 "FeatureEvent_FF_TSL" | ||
{ | ||
Access = Internal; | ||
Extensible = false; | ||
|
||
/// <summary> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,40 @@ | ||
interface "IProvider_FF_TSL" | ||
{ | ||
Access = Internal; | ||
|
||
/// <summary> | ||
/// Cleans up any cached data for the specified provider. | ||
/// </summary> | ||
/// <param name="ConnectionInfo">Provider connection information.</param> | ||
procedure ClearCache(ConnectionInfo: JsonObject) | ||
/// <summary> | ||
/// Handles a drill down event for the specified feature. | ||
/// </summary> | ||
/// <param name="ConnectionInfo">Provider connection information.</param> | ||
/// <param name="FeatureID">Feature Identifier.</param> | ||
procedure DrillDownState(ConnectionInfo: JsonObject; FeatureID: Code[50]) | ||
/// <summary> | ||
/// Gets the enabled features for the specified provider. | ||
/// </summary> | ||
/// <param name="ConnectionInfo">Provider connection information.</param> | ||
/// <returns>List of enabled feature identifiers.</returns> | ||
procedure GetEnabled(ConnectionInfo: JsonObject): List of [Code[50]] | ||
/// <summary> | ||
/// Gets all features for the specified provider. | ||
/// </summary> | ||
/// <param name="ConnectionInfo">Provider connection information.</param> | ||
/// <returns>List of all feature identifiers.</returns> | ||
procedure GetAll(ConnectionInfo: JsonObject): Dictionary of [Code[50], Text] | ||
/// <summary> | ||
/// Passing a user context to the provider. | ||
/// </summary> | ||
/// <param name="ConnectionInfo">Provider connection information.</param> | ||
/// <param name="ContextUserSecurityID">User context identifier.</param> | ||
procedure SetContext(ConnectionInfo: JsonObject; ContextUserSecurityID: Guid) | ||
/// <summary> | ||
/// Captures a feature event. | ||
/// </summary> | ||
/// <param name="ConnectionInfo">Provider connection information.</param> | ||
/// <param name="EventDateTime">Event date time.</param> | ||
/// <param name="FeatureEvent">Feature event type.</param> | ||
/// <param name="CustomDimensions">Custom dimensions.</param> | ||
procedure CaptureEvent(ConnectionInfo: JsonObject; EventDateTime: DateTime; FeatureEvent: Enum "FeatureEvent_FF_TSL"; CustomDimensions: Dictionary of [Text, Text]) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters