pub struct GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest {
pub action: Option<Vec<String>>,
pub actor_email: Option<Vec<String>>,
pub earliest_change_time: Option<DateTime<Utc>>,
pub latest_change_time: Option<DateTime<Utc>>,
pub page_size: Option<i32>,
pub page_token: Option<String>,
pub property: Option<String>,
pub resource_type: Option<Vec<String>>,
}Expand description
Request message for SearchChangeHistoryEvents RPC.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- search change history events accounts (request)
Fields§
§action: Option<Vec<String>>Optional. If set, only return changes that match one or more of these types of actions.
actor_email: Option<Vec<String>>Optional. If set, only return changes if they are made by a user in this list.
earliest_change_time: Option<DateTime<Utc>>Optional. If set, only return changes made after this time (inclusive).
latest_change_time: Option<DateTime<Utc>>Optional. If set, only return changes made before this time (inclusive).
page_size: Option<i32>Optional. The maximum number of ChangeHistoryEvent items to return. The service may return fewer than this value, even if there are additional pages. If unspecified, at most 50 items will be returned. The maximum value is 200 (higher values will be coerced to the maximum).
page_token: Option<String>Optional. A page token, received from a previous SearchChangeHistoryEvents call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to SearchChangeHistoryEvents must match the call that provided the page token.
property: Option<String>Optional. Resource name for a child property. If set, only return changes made to this property or its child resources.
resource_type: Option<Vec<String>>Optional. If set, only return changes if they are for a resource that matches at least one of these types.
Trait Implementations§
Source§impl Clone for GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
impl Clone for GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
Source§fn clone(&self) -> GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
fn clone(&self) -> GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
impl Default for GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
Source§fn default() -> GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
fn default() -> GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
Source§impl<'de> Deserialize<'de> for GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
impl<'de> Deserialize<'de> for GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl RequestValue for GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
Auto Trait Implementations§
impl Freeze for GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
impl RefUnwindSafe for GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
impl Send for GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
impl Sync for GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
impl Unpin for GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
impl UnwindSafe for GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more