// WARNING: THIS CODE IS AUTOGENERATED.
// DO NOT EDIT!!!
#![allow(clippy::too_many_arguments, clippy::new_without_default)]
use crate::types::LabeledPrice;
use crate::types::ShippingOption;
impl ShippingOption {
/// This function creates an empty struct for the object ShippingOption.
pub fn new(id: String, title: String, prices: Vec<LabeledPrice>) -> Self {
Self { id, title, prices }
}
}