| /* | |
| * | |
| * | |
| * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | |
| * | |
| * The version of the OpenAPI document: | |
| * | |
| * Generated by: https://openapi-generator.tech | |
| */ | |
| use crate::models; | |
| use serde::{Deserialize, Serialize}; | |
| pub struct GoogleFontVariant { | |
| pub filename: String, | |
| pub style: String, | |
| pub weight: u32, | |
| } | |
| impl GoogleFontVariant { | |
| pub fn new(filename: String, style: String, weight: u32) -> GoogleFontVariant { | |
| GoogleFontVariant { | |
| filename, | |
| style, | |
| weight, | |
| } | |
| } | |
| } | |