| /* | |
| * | |
| * | |
| * 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 GoogleFontEntry { | |
| pub category: String, | |
| pub family: String, | |
| pub subsets: Vec<String>, | |
| pub variants: Vec<models::GoogleFontVariant>, | |
| } | |
| impl GoogleFontEntry { | |
| pub fn new( | |
| category: String, | |
| family: String, | |
| subsets: Vec<String>, | |
| variants: Vec<models::GoogleFontVariant>, | |
| ) -> GoogleFontEntry { | |
| GoogleFontEntry { | |
| category, | |
| family, | |
| subsets, | |
| variants, | |
| } | |
| } | |
| } | |