File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Source/Adobe.Target.Client/Extension Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -40,11 +40,13 @@ internal static TelemetryEntry GetTelemetryEntry(this TargetDeliveryRequest requ
4040 var decisioningMethod = request . DecisioningMethod != default ( DecisioningMethod )
4141 ? request . DecisioningMethod : config . DecisioningMethod ;
4242
43- return new TelemetryEntry (
44- request . DeliveryRequest . RequestId ,
45- DateTimeOffset . UtcNow . ToUnixTimeMilliseconds ( ) ,
46- execution ,
47- new TelemetryFeatures ( decisioningMethod ) ) ;
43+ return new TelemetryEntry
44+ {
45+ RequestId = request . DeliveryRequest . RequestId ,
46+ Timestamp = DateTimeOffset . UtcNow . ToUnixTimeMilliseconds ( ) ,
47+ Execution = execution ,
48+ Features = new TelemetryFeatures ( decisioningMethod ) ,
49+ } ;
4850 }
4951 }
5052}
You can’t perform that action at this time.
0 commit comments