fastly_api/models/request_body_for_update.rs
1/*
2 * Fastly API
3 *
4 * Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
5 *
6 */
7
8/// RequestBodyForUpdate : All attributes for updating a domain
9
10
11
12#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
13pub struct RequestBodyForUpdate {
14 /// The `service_id` associated with your domain or `null` if there is no association.
15 #[serde(rename = "service_id", skip_serializing_if = "Option::is_none")]
16 pub service_id: Option<String>,
17 /// A freeform descriptive note.
18 #[serde(rename = "description", skip_serializing_if = "Option::is_none")]
19 pub description: Option<String>,
20}
21
22impl RequestBodyForUpdate {
23 /// All attributes for updating a domain
24 pub fn new() -> RequestBodyForUpdate {
25 RequestBodyForUpdate {
26 service_id: None,
27 description: None,
28 }
29 }
30}
31
32