1//! Request body struct for the Swap Plan API
23use serde::Serialize;
45/// This is a model struct for the SwapPlanRequest type.
6#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize)]
7pub struct SwapPlanRequest {
8/// The ID of the new subscription plan.
9pub new_plan_id: String,
10}