> ## Documentation Index
> Fetch the complete documentation index at: https://praison.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Delivery Result • AI Agent SDK

> DeliveryResult: Outcome of an agent-initiated proactive send.

# DeliveryResult

> Defined in the [**protocols**](../modules/protocols) module.

<Badge color="blue">AI Agent</Badge>

Outcome of an agent-initiated proactive send.

Attributes:
ok: Whether the send was accepted for delivery.
target: The resolved target the message was routed to.
summary: Human-readable summary suitable for returning to the model.
detail: Optional extra information (error text, message id, etc.).

## Properties

<ResponseField name="ok" type="bool">
  No description available.
</ResponseField>

<ResponseField name="target" type="str">
  No description available.
</ResponseField>

<ResponseField name="summary" type="str">
  No description available.
</ResponseField>

<ResponseField name="detail" type="Optional[str]">
  No description available.
</ResponseField>

## Methods

<CardGroup cols={2}>
  <Card title="as_dict()" icon="function" href="../functions/DeliveryResult-as_dict">
    Convert to a serializable dictionary.
  </Card>
</CardGroup>

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-agents/praisonaiagents/gateway/protocols.py#L2438">
  `praisonaiagents/gateway/protocols.py` at line 2438
</Card>
