// WARNING: THIS CODE IS AUTOGENERATED.
// DO NOT EDIT!!!
#![allow(clippy::too_many_arguments, clippy::new_without_default)]
use crate::types::BackgroundFillGradient;
impl BackgroundFillGradient {
/// This function creates an empty struct for the object BackgroundFillGradient.
pub fn new(top_color: i64, bottom_color: i64, rotation_angle: i64) -> Self {
Self {
top_color,
bottom_color,
rotation_angle,
}
}
}