netlify_rust/models/site_processing_settings_html.rs
1/*
2 * Netlify's API documentation
3 *
4 * Netlify is a hosting service for the programmable web. It understands your documents and provides an API to handle atomic deploys of websites, manage form submissions, inject JavaScript snippets, and much more. This is a REST-style API that uses JSON for serialization and OAuth 2 for authentication. This document is an OpenAPI reference for the Netlify API that you can explore. For more detailed instructions for common uses, please visit the [online documentation](https://www.netlify.com/docs/api/). Visit our Community forum to join the conversation about [understanding and using Netlify’s API](https://community.netlify.com/t/common-issue-understanding-and-using-netlifys-api/160). Additionally, we have two API clients for your convenience: - [Go Client](https://github.com/netlify/open-api#go-client) - [JS Client](https://github.com/netlify/js-client)
5 *
6 * The version of the OpenAPI document: 2.5.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
15pub struct SiteProcessingSettingsHtml {
16 #[serde(rename = "pretty_urls", skip_serializing_if = "Option::is_none")]
17 pub pretty_urls: Option<bool>,
18}
19
20impl SiteProcessingSettingsHtml {
21 pub fn new() -> SiteProcessingSettingsHtml {
22 SiteProcessingSettingsHtml {
23 pretty_urls: None,
24 }
25 }
26}
27
28