pub fn ser_describe_usage_report_subscriptions_input_input(
encoder: &mut ::aws_smithy_cbor::Encoder,
#[allow(unused)] input: &crate::operation::describe_usage_report_subscriptions::DescribeUsageReportSubscriptionsInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
encoder.begin_map();
if let Some(var_1) = &input.max_results {
encoder.str("MaxResults").integer(*var_1);
}
if let Some(var_2) = &input.next_token {
encoder.str("NextToken").str(var_2.as_str());
}
encoder.end();
Ok(())
}