square_api_client/models/
swap_plan_request.rs

1//! Request body struct for the Swap Plan API
2
3use serde::Serialize;
4
5/// 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.
9    pub new_plan_id: String,
10}