class Google::Apis::YoutubeAnalyticsV1::BatchReportDefinition

Contains single batchReportDefinition resource.

Attributes

id[RW]

The ID that YouTube assigns and uses to uniquely identify the report definition. Corresponds to the JSON property `id` @return [String]

kind[RW]

This value specifies the type of data of this item. For batch report definition the kind property value is youtubeAnalytics#batchReportDefinition. Corresponds to the JSON property `kind` @return [String]

name[RW]

Name of the report definition. Corresponds to the JSON property `name` @return [String]

status[RW]

Status of the report definition. Corresponds to the JSON property `status` @return [String]

type[RW]

Type of the report definition. Corresponds to the JSON property `type` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/youtube_analytics_v1/classes.rb, line 165
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/youtube_analytics_v1/classes.rb, line 170
def update!(**args)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @name = args[:name] if args.key?(:name)
  @status = args[:status] if args.key?(:status)
  @type = args[:type] if args.key?(:type)
end