Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ContentTransfersBreakdown
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ContentTransfersBreakdown
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chromemanagement_v1/classes.rb,
lib/google/apis/chromemanagement_v1/representations.rb,
lib/google/apis/chromemanagement_v1/representations.rb
Overview
A content transfers summary for a given breakdown dimension.
Instance Attribute Summary collapse
-
#content_category ⇒ String
The content category of the content transfers.
-
#event_domain ⇒ String
The event domain of the content transfers.
-
#summary ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ContentTransfersSummary
Summary of content transfers for a given metric.
-
#user ⇒ String
The user that transferred the content.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementVersionsV1ContentTransfersBreakdown
constructor
A new instance of GoogleChromeManagementVersionsV1ContentTransfersBreakdown.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementVersionsV1ContentTransfersBreakdown
Returns a new instance of GoogleChromeManagementVersionsV1ContentTransfersBreakdown.
5213 5214 5215 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5213 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content_category ⇒ String
The content category of the content transfers.
Corresponds to the JSON property contentCategory
5196 5197 5198 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5196 def content_category @content_category end |
#event_domain ⇒ String
The event domain of the content transfers.
Corresponds to the JSON property eventDomain
5201 5202 5203 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5201 def event_domain @event_domain end |
#summary ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ContentTransfersSummary
Summary of content transfers for a given metric.
Corresponds to the JSON property summary
5206 5207 5208 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5206 def summary @summary end |
#user ⇒ String
The user that transferred the content.
Corresponds to the JSON property user
5211 5212 5213 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5211 def user @user end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5218 5219 5220 5221 5222 5223 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5218 def update!(**args) @content_category = args[:content_category] if args.key?(:content_category) @event_domain = args[:event_domain] if args.key?(:event_domain) @summary = args[:summary] if args.key?(:summary) @user = args[:user] if args.key?(:user) end |