Class: Google::Apis::YoutubePartnerV1::Whitelist
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::Whitelist
- 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
-
#id ⇒ String
The YouTube channel ID that uniquely identifies the whitelisted channel.
-
#kind ⇒ String
The type of the API resource.
-
#title ⇒ String
Title of the whitelisted YouTube channel.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Whitelist
constructor
A new instance of Whitelist.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Whitelist
Returns a new instance of Whitelist
4220 4221 4222 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4220 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
The YouTube channel ID that uniquely identifies the whitelisted channel.
Corresponds to the JSON property id
4207 4208 4209 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4207 def id @id end |
#kind ⇒ String
The type of the API resource. For whitelist resources, this value is
youtubePartner#whitelist.
Corresponds to the JSON property kind
4213 4214 4215 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4213 def kind @kind end |
#title ⇒ String
Title of the whitelisted YouTube channel.
Corresponds to the JSON property title
4218 4219 4220 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4218 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4225 4226 4227 4228 4229 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 4225 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 |