Package-level declarations

Types

Link copied to clipboard
class AgentCardResponseSpecification(var card: AgentCard? = null, var error: JSONRPCError? = null, delay: Duration = Duration.ZERO) : AbstractResponseSpecification<Nothing, AgentCard>
Link copied to clipboard
class CancelTaskResponseSpecification(var id: RequestId? = null, var result: Task? = null, var error: JSONRPCError? = null, delay: Duration = Duration.ZERO) : AbstractResponseSpecification<CancelTaskRequest, CancelTaskResponse>

Response specification for configuring delete task push notification config responses.

Response specification for configuring get authenticated extended card responses.

Link copied to clipboard
class GetTaskResponseSpecification(var id: RequestId? = null, var result: Task? = null, var error: JSONRPCError? = null, delay: Duration = Duration.ZERO) : AbstractResponseSpecification<GetTaskRequest, GetTaskResponse>
Link copied to clipboard
Link copied to clipboard
class SendMessageResponseSpecification(var id: RequestId? = null, var result: Task? = null, var error: JSONRPCError? = null, delay: Duration = Duration.ZERO) : AbstractResponseSpecification<SendMessageRequest, SendMessageResponse>
class SendStreamingMessageResponseSpecification(var responseFlow: Flow<TaskUpdateEvent>? = null, var delayBetweenChunks: Duration = Duration.ZERO, var error: JSONRPCError? = null, delay: Duration = Duration.ZERO) : AbstractResponseSpecification<SendStreamingMessageRequest, String>
Link copied to clipboard

Response specification for task resubscription operation.

Functions