- Update FailedError struct to correct api schema

This commit is contained in:
Jeremy Prater
2025-04-22 11:23:02 -07:00
parent 4c9793148e
commit 3a93e3e3cc

View File

@ -234,8 +234,9 @@ pub enum ResponseStatusDetail {
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct FailedError {
pub code: String,
pub message: String,
pub code: Option<String>,
pub message: Option<String>,
pub r#type: Option<String>,
}
#[derive(Debug, Serialize, Deserialize, Clone)]