pub struct GoogleAnalyticsAdminV1alphaCustomMetric {
pub description: Option<String>,
pub display_name: Option<String>,
pub measurement_unit: Option<String>,
pub name: Option<String>,
pub parameter_name: Option<String>,
pub restricted_metric_type: Option<Vec<String>>,
pub scope: Option<String>,
}Expand description
A definition for a custom metric.
§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).
- custom metrics create properties (request|response)
- custom metrics get properties (response)
- custom metrics patch properties (request|response)
Fields§
§description: Option<String>Optional. Description for this custom dimension. Max length of 150 characters.
display_name: Option<String>Required. Display name for this custom metric as shown in the Analytics UI. Max length of 82 characters, alphanumeric plus space and underscore starting with a letter. Legacy system-generated display names may contain square brackets, but updates to this field will never permit square brackets.
measurement_unit: Option<String>Required. The type for the custom metric’s value.
name: Option<String>Output only. Resource name for this CustomMetric resource. Format: properties/{property}/customMetrics/{customMetric}
parameter_name: Option<String>Required. Immutable. Tagging name for this custom metric. If this is an event-scoped metric, then this is the event parameter name. May only contain alphanumeric and underscore charactes, starting with a letter. Max length of 40 characters for event-scoped metrics.
restricted_metric_type: Option<Vec<String>>Optional. Types of restricted data that this metric may contain. Required for metrics with CURRENCY measurement unit. Must be empty for metrics with a non-CURRENCY measurement unit.
scope: Option<String>Required. Immutable. The scope of this custom metric.
Trait Implementations§
Source§impl Clone for GoogleAnalyticsAdminV1alphaCustomMetric
impl Clone for GoogleAnalyticsAdminV1alphaCustomMetric
Source§fn clone(&self) -> GoogleAnalyticsAdminV1alphaCustomMetric
fn clone(&self) -> GoogleAnalyticsAdminV1alphaCustomMetric
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleAnalyticsAdminV1alphaCustomMetric
impl Default for GoogleAnalyticsAdminV1alphaCustomMetric
Source§fn default() -> GoogleAnalyticsAdminV1alphaCustomMetric
fn default() -> GoogleAnalyticsAdminV1alphaCustomMetric
Source§impl<'de> Deserialize<'de> for GoogleAnalyticsAdminV1alphaCustomMetric
impl<'de> Deserialize<'de> for GoogleAnalyticsAdminV1alphaCustomMetric
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 GoogleAnalyticsAdminV1alphaCustomMetric
impl ResponseResult for GoogleAnalyticsAdminV1alphaCustomMetric
Auto Trait Implementations§
impl Freeze for GoogleAnalyticsAdminV1alphaCustomMetric
impl RefUnwindSafe for GoogleAnalyticsAdminV1alphaCustomMetric
impl Send for GoogleAnalyticsAdminV1alphaCustomMetric
impl Sync for GoogleAnalyticsAdminV1alphaCustomMetric
impl Unpin for GoogleAnalyticsAdminV1alphaCustomMetric
impl UnwindSafe for GoogleAnalyticsAdminV1alphaCustomMetric
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