mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-01-21 02:37:05 +01:00
make regen-apis
This commit is contained in:
@@ -77,7 +77,7 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(4 + self._additional_params.len());
|
||||
params.push("parent", self._parent);
|
||||
params.push("parent", &self._parent);
|
||||
|
||||
params.extend(self._additional_params.iter());
|
||||
|
||||
@@ -645,7 +645,7 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(5 + self._additional_params.len());
|
||||
params.push("parent", self._parent);
|
||||
params.push("parent", &self._parent);
|
||||
if let Some(value) = self._page_token.as_ref() {
|
||||
params.push("pageToken", value);
|
||||
}
|
||||
@@ -934,7 +934,7 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(4 + self._additional_params.len());
|
||||
params.push("parent", self._parent);
|
||||
params.push("parent", &self._parent);
|
||||
|
||||
params.extend(self._additional_params.iter());
|
||||
|
||||
@@ -1223,7 +1223,7 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(5 + self._additional_params.len());
|
||||
params.push("parent", self._parent);
|
||||
params.push("parent", &self._parent);
|
||||
if let Some(value) = self._page_token.as_ref() {
|
||||
params.push("pageToken", value);
|
||||
}
|
||||
@@ -1512,7 +1512,7 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(4 + self._additional_params.len());
|
||||
params.push("name", self._name);
|
||||
params.push("name", &self._name);
|
||||
|
||||
params.extend(self._additional_params.iter());
|
||||
|
||||
@@ -1804,7 +1804,7 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(4 + self._additional_params.len());
|
||||
params.push("parent", self._parent);
|
||||
params.push("parent", &self._parent);
|
||||
|
||||
params.extend(self._additional_params.iter());
|
||||
|
||||
@@ -2096,7 +2096,7 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(4 + self._additional_params.len());
|
||||
params.push("name", self._name);
|
||||
params.push("name", &self._name);
|
||||
|
||||
params.extend(self._additional_params.iter());
|
||||
|
||||
@@ -2381,7 +2381,7 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(3 + self._additional_params.len());
|
||||
params.push("name", self._name);
|
||||
params.push("name", &self._name);
|
||||
|
||||
params.extend(self._additional_params.iter());
|
||||
|
||||
@@ -2649,7 +2649,7 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(6 + self._additional_params.len());
|
||||
params.push("parent", self._parent);
|
||||
params.push("parent", &self._parent);
|
||||
if let Some(value) = self._page_token.as_ref() {
|
||||
params.push("pageToken", value);
|
||||
}
|
||||
@@ -2950,7 +2950,7 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(5 + self._additional_params.len());
|
||||
params.push("name", self._name);
|
||||
params.push("name", &self._name);
|
||||
if let Some(value) = self._update_mask.as_ref() {
|
||||
params.push("updateMask", value.to_string());
|
||||
}
|
||||
@@ -3529,7 +3529,7 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(2 + self._additional_params.len());
|
||||
params.push("name", self._name);
|
||||
params.push("name", &self._name);
|
||||
|
||||
params.extend(self._additional_params.iter());
|
||||
|
||||
@@ -3809,7 +3809,7 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(4 + self._additional_params.len());
|
||||
params.push("parent", self._parent);
|
||||
params.push("parent", &self._parent);
|
||||
|
||||
params.extend(self._additional_params.iter());
|
||||
|
||||
|
||||
@@ -30,3 +30,6 @@ pub use method_builders::*;
|
||||
|
||||
mod call_builders;
|
||||
pub use call_builders::*;
|
||||
|
||||
mod enums;
|
||||
pub use enums::*;
|
||||
|
||||
@@ -146,13 +146,13 @@ pub struct Case {
|
||||
pub name: Option<String>,
|
||||
/// The priority of this case. If this is set, do not set severity.
|
||||
|
||||
pub priority: Option<String>,
|
||||
pub priority: Option<CasePriorityEnum>,
|
||||
/// The severity of this case. Deprecated. Use priority instead.
|
||||
|
||||
pub severity: Option<String>,
|
||||
pub severity: Option<CaseSeverityEnum>,
|
||||
/// Output only. The current status of the support case.
|
||||
|
||||
pub state: Option<String>,
|
||||
pub state: Option<CaseStateEnum>,
|
||||
/// The email addresses to receive updates on this case.
|
||||
#[serde(rename="subscriberEmailAddresses")]
|
||||
|
||||
@@ -296,7 +296,7 @@ pub struct CompositeMedia {
|
||||
/// # gdata.* are outside protos with mising documentation
|
||||
#[serde(rename="referenceType")]
|
||||
|
||||
pub reference_type: Option<String>,
|
||||
pub reference_type: Option<CompositeMediaReferenceTypeEnum>,
|
||||
/// # gdata.* are outside protos with mising documentation
|
||||
#[serde(rename="sha1Hash")]
|
||||
|
||||
@@ -525,7 +525,7 @@ pub struct Escalation {
|
||||
pub justification: Option<String>,
|
||||
/// Required. The reason why the Case is being escalated.
|
||||
|
||||
pub reason: Option<String>,
|
||||
pub reason: Option<EscalationReasonEnum>,
|
||||
}
|
||||
|
||||
impl client::Part for Escalation {}
|
||||
@@ -715,7 +715,7 @@ pub struct Media {
|
||||
/// # gdata.* are outside protos with mising documentation
|
||||
#[serde(rename="referenceType")]
|
||||
|
||||
pub reference_type: Option<String>,
|
||||
pub reference_type: Option<MediaReferenceTypeEnum>,
|
||||
/// # gdata.* are outside protos with mising documentation
|
||||
#[serde(rename="sha1Hash")]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user