Results 2 comments of SarguelUnda

A trick that use to work for this case was : ```rust #[serde(alias = "soapenv:Body", rename(serialize = "soapenv:Body"))] pub struct SoapBody { #[serde(rename = "$value")] pub response_type: Response, } ```

I'm not sure but it seems that putting the props definition after the data definition also work for me. Can anyone confirm or explain why ? Sorry I'm not typescript...