| 476 | |
| 477 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 478 | pub struct ApiError { |
| 479 | pub message: String, |
| 480 | #[serde(skip_serializing_if = "Option::is_none")] |
| 481 | pub status_code: Option<i32>, |
| 482 | pub is_retryable: bool, |
| 483 | #[serde(skip_serializing_if = "Option::is_none")] |
| 484 | pub response_headers: Option<HashMap<String, String>>, |
| 485 | #[serde(skip_serializing_if = "Option::is_none")] |
| 486 | pub response_body: Option<String>, |
| 487 | #[serde(skip_serializing_if = "Option::is_none")] |
| 488 | pub metadata: Option<HashMap<String, String>>, |
| 489 | } |
| 490 | |
| 491 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 492 | pub struct PartDelta { |
nothing calls this directly
no outgoing calls
no test coverage detected