(mut self, id: impl Into<String>)
| 543 | /// Set the delegation ID for agent authorization. |
| 544 | #[must_use] |
| 545 | pub fn delegation_id(mut self, id: impl Into<String>) -> Self { |
| 546 | self.delegation_id = Some(id.into()); |
| 547 | self |
| 548 | } |
| 549 | |
| 550 | /// Build the `SessionEnvelope`. |
| 551 | pub fn build(self) -> SessionEnvelope { |