pub fn ser_o_auth2_properties(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::types::OAuth2Properties,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
{
object.key("tokenUrl").string(input.token_url.as_str());
}
{
object.key("oAuth2GrantType").string(input.o_auth2_grant_type.as_str());
}
if let Some(var_1) = &input.token_url_custom_properties {
#[allow(unused_mut)]
let mut object_2 = object.key("tokenUrlCustomProperties").start_object();
for (key_3, value_4) in var_1 {
{
object_2.key(key_3.as_str()).string(value_4.as_str());
}
}
object_2.finish();
}
Ok(())
}
pub(crate) fn de_o_auth2_properties<'a, I>(
tokens: &mut ::std::iter::Peekable<I>,
_value: &'a [u8],
) -> ::std::result::Result<Option<crate::types::OAuth2Properties>, ::aws_smithy_json::deserialize::error::DeserializeError>
where
I: Iterator<Item = Result<::aws_smithy_json::deserialize::Token<'a>, ::aws_smithy_json::deserialize::error::DeserializeError>>,
{
match tokens.next().transpose()? {
Some(::aws_smithy_json::deserialize::Token::ValueNull { .. }) => Ok(None),
Some(::aws_smithy_json::deserialize::Token::StartObject { .. }) => {
#[allow(unused_mut)]
let mut builder = crate::types::builders::OAuth2PropertiesBuilder::default();
loop {
match tokens.next().transpose()? {
Some(::aws_smithy_json::deserialize::Token::EndObject { .. }) => break,
Some(::aws_smithy_json::deserialize::Token::ObjectKey { key, .. }) => match key.to_unescaped()?.as_ref() {
"tokenUrl" => {
builder = builder.set_token_url(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| u.into_owned()))
.transpose()?,
);
}
"oAuth2GrantType" => {
builder = builder.set_o_auth2_grant_type(
::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
.map(|s| s.to_unescaped().map(|u| crate::types::OAuth2GrantType::from(u.as_ref())))
.transpose()?,
);
}
"tokenUrlCustomProperties" => {
builder = builder.set_token_url_custom_properties(
crate::protocol_serde::shape_token_url_custom_properties::de_token_url_custom_properties(tokens, _value)?,
);
}
_ => ::aws_smithy_json::deserialize::token::skip_value(tokens)?,
},
other => {
return Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(format!(
"expected object key or end object, found: {other:?}"
)))
}
}
}
Ok(Some(crate::serde_util::o_auth2_properties_correct_errors(builder).build().map_err(
|err| ::aws_smithy_json::deserialize::error::DeserializeError::custom_source("Response was invalid", err),
)?))
}
_ => Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(
"expected start object or null",
)),
}
}