Class: Google::Apis::DisplayvideoV3::Channel

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/displayvideo_v3/classes.rb,
lib/google/apis/displayvideo_v3/representations.rb,
lib/google/apis/displayvideo_v3/representations.rb

Overview

A single channel. Channels are custom groups of related websites and apps.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Channel

Returns a new instance of Channel.



3319
3320
3321
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3319

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#advertiser_idFixnum

The ID of the advertiser that owns the channel. Corresponds to the JSON property advertiserId

Returns:

  • (Fixnum)


3284
3285
3286
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3284

def advertiser_id
  @advertiser_id
end

#channel_idFixnum

Output only. The unique ID of the channel. Assigned by the system. Corresponds to the JSON property channelId

Returns:

  • (Fixnum)


3289
3290
3291
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3289

def channel_id
  @channel_id
end

#display_nameString

Required. The display name of the channel. Must be UTF-8 encoded with a maximum length of 240 bytes. Corresponds to the JSON property displayName

Returns:

  • (String)


3295
3296
3297
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3295

def display_name
  @display_name
end

#nameString

Output only. The resource name of the channel. Corresponds to the JSON property name

Returns:

  • (String)


3300
3301
3302
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3300

def name
  @name
end

#negatively_targeted_line_item_countFixnum

Output only. Number of line items that are directly targeting this channel negatively. Corresponds to the JSON property negativelyTargetedLineItemCount

Returns:

  • (Fixnum)


3306
3307
3308
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3306

def negatively_targeted_line_item_count
  @negatively_targeted_line_item_count
end

#partner_idFixnum

The ID of the partner that owns the channel. Corresponds to the JSON property partnerId

Returns:

  • (Fixnum)


3311
3312
3313
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3311

def partner_id
  @partner_id
end

#positively_targeted_line_item_countFixnum

Output only. Number of line items that are directly targeting this channel positively. Corresponds to the JSON property positivelyTargetedLineItemCount

Returns:

  • (Fixnum)


3317
3318
3319
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3317

def positively_targeted_line_item_count
  @positively_targeted_line_item_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3324
3325
3326
3327
3328
3329
3330
3331
3332
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3324

def update!(**args)
  @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
  @channel_id = args[:channel_id] if args.key?(:channel_id)
  @display_name = args[:display_name] if args.key?(:display_name)
  @name = args[:name] if args.key?(:name)
  @negatively_targeted_line_item_count = args[:negatively_targeted_line_item_count] if args.key?(:negatively_targeted_line_item_count)
  @partner_id = args[:partner_id] if args.key?(:partner_id)
  @positively_targeted_line_item_count = args[:positively_targeted_line_item_count] if args.key?(:positively_targeted_line_item_count)
end