Class: Google::Apis::YoutubeV3::VideoStatus
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubeV3::VideoStatus
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtube_v3/classes.rb,
 generated/google/apis/youtube_v3/representations.rb,
 generated/google/apis/youtube_v3/representations.rb
Overview
Basic details about a video category, such as its localized title.
Instance Attribute Summary collapse
- 
  
    
      #embeddable  ⇒ Boolean 
    
    
      (also: #embeddable?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    This value indicates if the video can be embedded on another website. 
- 
  
    
      #failure_reason  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    This value explains why a video failed to upload. 
- 
  
    
      #license  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The video's license. 
- 
  
    
      #privacy_status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The video's privacy status. 
- 
  
    
      #public_stats_viewable  ⇒ Boolean 
    
    
      (also: #public_stats_viewable?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    This value indicates if the extended video statistics on the watch page can be viewed by everyone. 
- 
  
    
      #publish_at  ⇒ DateTime 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The date and time when the video is scheduled to publish. 
- 
  
    
      #rejection_reason  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    This value explains why YouTube rejected an uploaded video. 
- 
  
    
      #upload_status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The status of the uploaded video. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ VideoStatus 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of VideoStatus. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ VideoStatus
Returns a new instance of VideoStatus
| 8290 8291 8292 | # File 'generated/google/apis/youtube_v3/classes.rb', line 8290 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#embeddable ⇒ Boolean Also known as: embeddable?
This value indicates if the video can be embedded on another website.
Corresponds to the JSON property embeddable
| 8244 8245 8246 | # File 'generated/google/apis/youtube_v3/classes.rb', line 8244 def @embeddable end | 
#failure_reason ⇒ String
This value explains why a video failed to upload. This property is only
present if the uploadStatus property indicates that the upload failed.
Corresponds to the JSON property failureReason
| 8251 8252 8253 | # File 'generated/google/apis/youtube_v3/classes.rb', line 8251 def failure_reason @failure_reason end | 
#license ⇒ String
The video's license.
Corresponds to the JSON property license
| 8256 8257 8258 | # File 'generated/google/apis/youtube_v3/classes.rb', line 8256 def license @license end | 
#privacy_status ⇒ String
The video's privacy status.
Corresponds to the JSON property privacyStatus
| 8261 8262 8263 | # File 'generated/google/apis/youtube_v3/classes.rb', line 8261 def privacy_status @privacy_status end | 
#public_stats_viewable ⇒ Boolean Also known as: public_stats_viewable?
This value indicates if the extended video statistics on the watch page can be
viewed by everyone. Note that the view count, likes, etc will still be visible
if this is disabled.
Corresponds to the JSON property publicStatsViewable
| 8268 8269 8270 | # File 'generated/google/apis/youtube_v3/classes.rb', line 8268 def public_stats_viewable @public_stats_viewable end | 
#publish_at ⇒ DateTime
The date and time when the video is scheduled to publish. It can be set only
if the privacy status of the video is private. The value is specified in ISO
8601 (YYYY-MM-DDThh:mm:ss.sZ) format.
Corresponds to the JSON property publishAt
| 8276 8277 8278 | # File 'generated/google/apis/youtube_v3/classes.rb', line 8276 def publish_at @publish_at end | 
#rejection_reason ⇒ String
This value explains why YouTube rejected an uploaded video. This property is
only present if the uploadStatus property indicates that the upload was
rejected.
Corresponds to the JSON property rejectionReason
| 8283 8284 8285 | # File 'generated/google/apis/youtube_v3/classes.rb', line 8283 def rejection_reason @rejection_reason end | 
#upload_status ⇒ String
The status of the uploaded video.
Corresponds to the JSON property uploadStatus
| 8288 8289 8290 | # File 'generated/google/apis/youtube_v3/classes.rb', line 8288 def upload_status @upload_status end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 | # File 'generated/google/apis/youtube_v3/classes.rb', line 8295 def update!(**args) @embeddable = args[:embeddable] if args.key?(:embeddable) @failure_reason = args[:failure_reason] if args.key?(:failure_reason) @license = args[:license] if args.key?(:license) @privacy_status = args[:privacy_status] if args.key?(:privacy_status) @public_stats_viewable = args[:public_stats_viewable] if args.key?(:public_stats_viewable) @publish_at = args[:publish_at] if args.key?(:publish_at) @rejection_reason = args[:rejection_reason] if args.key?(:rejection_reason) @upload_status = args[:upload_status] if args.key?(:upload_status) end |