Class: Google::Apis::YoutubeAnalyticsV1::BatchReportDefinitionList
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeAnalyticsV1::BatchReportDefinitionList
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtube_analytics_v1/classes.rb,
generated/google/apis/youtube_analytics_v1/representations.rb,
generated/google/apis/youtube_analytics_v1/representations.rb
Overview
A paginated list of batchReportDefinition resources returned in response to a youtubeAnalytics.batchReportDefinitions.list request.
Instance Attribute Summary collapse
-
#items ⇒ Array<Google::Apis::YoutubeAnalyticsV1::BatchReportDefinition>
A list of batchReportDefinition resources that match the request criteria.
-
#kind ⇒ String
This value specifies the type of data included in the API response.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BatchReportDefinitionList
constructor
A new instance of BatchReportDefinitionList.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ BatchReportDefinitionList
Returns a new instance of BatchReportDefinitionList.
196 197 198 |
# File 'generated/google/apis/youtube_analytics_v1/classes.rb', line 196 def initialize(**args) update!(**args) end |
Instance Attribute Details
#items ⇒ Array<Google::Apis::YoutubeAnalyticsV1::BatchReportDefinition>
A list of batchReportDefinition resources that match the request criteria.
Corresponds to the JSON property items
187 188 189 |
# File 'generated/google/apis/youtube_analytics_v1/classes.rb', line 187 def items @items end |
#kind ⇒ String
This value specifies the type of data included in the API response. For the
list method, the kind property value is youtubeAnalytics#
batchReportDefinitionList.
Corresponds to the JSON property kind
194 195 196 |
# File 'generated/google/apis/youtube_analytics_v1/classes.rb', line 194 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
201 202 203 204 |
# File 'generated/google/apis/youtube_analytics_v1/classes.rb', line 201 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end |