You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
@@ -33,7 +32,7 @@ Name | Type | Description | Required | Notes
33
32
### HTTP request headers
34
33
35
34
-**Content-Type**: application/json
36
-
-**Accept**: text/plain
35
+
-**Accept**: application/json
37
36
38
37
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
ContentType::Unsupported(unknown_type) => returnErr(Error::from(serde_json::Error::custom(format!("Received `{unknown_type}` content type response that cannot be converted to `String`")))),
67
+
ContentType::Text => returnErr(Error::from(serde_json::Error::custom("Received `text/plain` content type response that cannot be converted to `models::AcceptInviteReturnType`"))),
68
+
ContentType::Unsupported(unknown_type) => returnErr(Error::from(serde_json::Error::custom(format!("Received `{unknown_type}` content type response that cannot be converted to `models::AcceptInviteReturnType`")))),
ContentType::Text => returnErr(Error::from(serde_json::Error::custom("Received `text/plain` content type response that cannot be converted to `Vec<String>`"))),
176
+
ContentType::Unsupported(unknown_type) => returnErr(Error::from(serde_json::Error::custom(format!("Received `{unknown_type}` content type response that cannot be converted to `Vec<String>`")))),
177
+
}
163
178
}else{
164
179
let content = resp.text().await?;
165
180
let entity:Option<UpdateManyError> = serde_json::from_str(&content).ok();
0 commit comments