Source code for microsoft.opentelemetry.a365.core.invoke_agent_details
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# Data class for invoke agent scope details.
from dataclasses import dataclass
from microsoft.opentelemetry.a365.core.models.service_endpoint import ServiceEndpoint
[docs]
@dataclass
class InvokeAgentScopeDetails:
"""Scope-level configuration for agent invocation tracing."""
endpoint: ServiceEndpoint | None = None