Skip to main content

systemprompt_models/a2a/
methods.rs

1//! A2A JSON-RPC method name constants.
2//!
3//! Copyright (c) systemprompt.io — Business Source License 1.1.
4//! See <https://systemprompt.io> for licensing details.
5
6pub const SEND_MESSAGE: &str = "SendMessage";
7pub const SEND_STREAMING_MESSAGE: &str = "SendStreamingMessage";
8pub const GET_TASK: &str = "GetTask";
9pub const CANCEL_TASK: &str = "CancelTask";
10pub const SUBSCRIBE_TO_TASK: &str = "SubscribeToTask";
11pub const GET_EXTENDED_AGENT_CARD: &str = "GetExtendedAgentCard";
12pub const CREATE_TASK_PUSH_NOTIFICATION_CONFIG: &str = "CreateTaskPushNotificationConfig";
13pub const GET_TASK_PUSH_NOTIFICATION_CONFIG: &str = "GetTaskPushNotificationConfig";
14pub const LIST_TASK_PUSH_NOTIFICATION_CONFIGS: &str = "ListTaskPushNotificationConfigs";
15pub const DELETE_TASK_PUSH_NOTIFICATION_CONFIG: &str = "DeleteTaskPushNotificationConfig";