Class LfA2aV1AgentInterface
Declares a combination of a target URL, transport and protocol version for interacting with the agent. This allows agents to expose the same functionality over multiple protocol binding mechanisms.
Implements
Inherited Members
Namespace: Google.Apis.CustomerEngagementSuite.v1.Data
Assembly: Google.Apis.CustomerEngagementSuite.v1.dll
Syntax
public class LfA2aV1AgentInterface : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ProtocolBinding
Required. The protocol binding supported at this URL. This is an open form string, to be easily extended for
other protocol bindings. The core ones officially supported are JSONRPC, GRPC and HTTP+JSON.
Declaration
[JsonProperty("protocolBinding")]
public virtual string ProtocolBinding { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ProtocolVersion
Required. The version of the A2A protocol this interface exposes. Use the latest supported minor version per major version. Examples: "0.3", "1.0"
Declaration
[JsonProperty("protocolVersion")]
public virtual string ProtocolVersion { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Tenant
Optional. An opaque string used for routing requests to a specific agent or tenant when multiple agents are
served behind a single A2A endpoint. When set, clients MUST include this value in the tenant field of all
request messages sent to this interface. The server is responsible for interpreting the value and routing
requests accordingly; the protocol does not define its format or semantics.
Declaration
[JsonProperty("tenant")]
public virtual string Tenant { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Url
Required. The URL where this interface is available. Must be a valid absolute HTTPS URL in production. Example: "https://api.example.com/a2a/v1", "https://grpc.example.com/a2a"
Declaration
[JsonProperty("url")]
public virtual string Url { get; set; }
Property Value
| Type | Description |
|---|---|
| string |