Class: Google::Apis::YoutubePartnerV1::Requirements
- Inherits:
-
Object
- Object
- Google::Apis::YoutubePartnerV1::Requirements
- 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
-
#caption ⇒ Boolean
(also: #caption?)
This value indicates whether the order requires closed captions.
-
#hd_transcode ⇒ Boolean
(also: #hd_transcode?)
This value indicates whether the order requires HD-quality video.
-
#poster_art ⇒ Boolean
(also: #poster_art?)
This value indicates whether the order requires poster artwork.
-
#spotlight_art ⇒ Boolean
(also: #spotlight_art?)
This value indicates whether the order requires spotlight artwork.
-
#spotlight_review ⇒ Boolean
(also: #spotlight_review?)
This value indicates whether the spotlight artwork for the order needs to be reviewed.
-
#trailer ⇒ Boolean
(also: #trailer?)
This value indicates whether the order requires a trailer.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Requirements
constructor
A new instance of Requirements.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Requirements
Returns a new instance of Requirements
3365 3366 3367 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3365 def initialize(**args) update!(**args) end |
Instance Attribute Details
#caption ⇒ Boolean Also known as:
This value indicates whether the order requires closed captions.
Corresponds to the JSON property caption
3331 3332 3333 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3331 def @caption end |
#hd_transcode ⇒ Boolean Also known as: hd_transcode?
This value indicates whether the order requires HD-quality video.
Corresponds to the JSON property hdTranscode
3337 3338 3339 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3337 def hd_transcode @hd_transcode end |
#poster_art ⇒ Boolean Also known as: poster_art?
This value indicates whether the order requires poster artwork.
Corresponds to the JSON property posterArt
3343 3344 3345 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3343 def poster_art @poster_art end |
#spotlight_art ⇒ Boolean Also known as: spotlight_art?
This value indicates whether the order requires spotlight artwork.
Corresponds to the JSON property spotlightArt
3349 3350 3351 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3349 def spotlight_art @spotlight_art end |
#spotlight_review ⇒ Boolean Also known as: spotlight_review?
This value indicates whether the spotlight artwork for the order needs to be
reviewed.
Corresponds to the JSON property spotlightReview
3356 3357 3358 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3356 def spotlight_review @spotlight_review end |
#trailer ⇒ Boolean Also known as: trailer?
This value indicates whether the order requires a trailer.
Corresponds to the JSON property trailer
3362 3363 3364 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3362 def trailer @trailer end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3370 3371 3372 3373 3374 3375 3376 3377 |
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3370 def update!(**args) @caption = args[:caption] if args.key?(:caption) @hd_transcode = args[:hd_transcode] if args.key?(:hd_transcode) @poster_art = args[:poster_art] if args.key?(:poster_art) @spotlight_art = args[:spotlight_art] if args.key?(:spotlight_art) @spotlight_review = args[:spotlight_review] if args.key?(:spotlight_review) @trailer = args[:trailer] if args.key?(:trailer) end |