mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-02-23 15:49:49 +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("packageName", self._package_name);
|
||||
params.push("packageName", &self._package_name);
|
||||
|
||||
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::*;
|
||||
|
||||
@@ -9,7 +9,7 @@ pub struct AccountActivity {
|
||||
/// Required. Indicates the activity level of the account.
|
||||
#[serde(rename="activityLevel")]
|
||||
|
||||
pub activity_level: Option<String>,
|
||||
pub activity_level: Option<AccountActivityActivityLevelEnum>,
|
||||
}
|
||||
|
||||
impl client::Part for AccountActivity {}
|
||||
@@ -29,7 +29,7 @@ pub struct AccountDetails {
|
||||
/// Required. Details about the licensing status of the user for the app in the scope.
|
||||
#[serde(rename="appLicensingVerdict")]
|
||||
|
||||
pub app_licensing_verdict: Option<String>,
|
||||
pub app_licensing_verdict: Option<AccountDetailAppLicensingVerdictEnum>,
|
||||
}
|
||||
|
||||
impl client::Part for AccountDetails {}
|
||||
@@ -45,7 +45,7 @@ pub struct AppIntegrity {
|
||||
/// Required. Details about the app recognition verdict
|
||||
#[serde(rename="appRecognitionVerdict")]
|
||||
|
||||
pub app_recognition_verdict: Option<String>,
|
||||
pub app_recognition_verdict: Option<AppIntegrityAppRecognitionVerdictEnum>,
|
||||
/// The SHA256 hash of the requesting app's signing certificates (base64 web-safe encoded). Set iff app_recognition_verdict != UNEVALUATED.
|
||||
#[serde(rename="certificateSha256Digest")]
|
||||
|
||||
@@ -114,7 +114,7 @@ pub struct DeviceIntegrity {
|
||||
/// Details about the integrity of the device the app is running on
|
||||
#[serde(rename="deviceRecognitionVerdict")]
|
||||
|
||||
pub device_recognition_verdict: Option<Vec<String>>,
|
||||
pub device_recognition_verdict: Option<Vec<DeviceIntegrityDeviceRecognitionVerdictEnum>>,
|
||||
}
|
||||
|
||||
impl client::Part for DeviceIntegrity {}
|
||||
|
||||
Reference in New Issue
Block a user