parentId property

String? parentId

The operation parent ID to attach to telemetry items.

Implementation

String? get parentId => _contextMap[_parentIdKey] as String?;
void parentId=(String? value)

Setting will change the operation parent ID attached to telemetry items submitted with this context.

This is a convenience for setting the ai.operation.parentId key on TelemetryContext.properties.

Implementation

set parentId(String? value) => _contextMap.setOrRemove(_parentIdKey, value);