// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_custom_prompt_profile(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::types::CustomPromptProfile,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
{
object.key("ModelProfileId").string(input.model_profile_id.as_str());
}
{
object.key("SubscriptionId").string(input.subscription_id.as_str());
}
{
object.key("QbsAwsAccountId").string(input.qbs_aws_account_id.as_str());
}
Ok(())
}