Class: Google::Apis::YoutubePartnerV1::Whitelist

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Whitelist

Returns a new instance of Whitelist.



4119
4120
4121
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4119

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

Instance Attribute Details

#idString

The YouTube channel ID that uniquely identifies the whitelisted channel. Corresponds to the JSON property id

Returns:

  • (String)


4106
4107
4108
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4106

def id
  @id
end

#kindString

The type of the API resource. For whitelist resources, this value is youtubePartner#whitelist. Corresponds to the JSON property kind

Returns:

  • (String)


4112
4113
4114
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4112

def kind
  @kind
end

#titleString

Title of the whitelisted YouTube channel. Corresponds to the JSON property title

Returns:

  • (String)


4117
4118
4119
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4117

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4124
4125
4126
4127
4128
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4124

def update!(**args)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @title = args[:title] if args.key?(:title)
end