Class: Google::Apis::YoutubeV3::VideoRecordingDetails
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::YoutubeV3::VideoRecordingDetails
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/youtube_v3/classes.rb,
lib/google/apis/youtube_v3/representations.rb,
lib/google/apis/youtube_v3/representations.rb 
Overview
Recording information associated with the video.
Instance Attribute Summary collapse
- 
  
    
      #location  ⇒ Google::Apis::YoutubeV3::GeoPoint 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Geographical coordinates of a point, in WGS84.
 - 
  
    
      #location_description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The text description of the location where the video was recorded.
 - 
  
    
      #recording_date  ⇒ DateTime 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The date and time when the video was recorded.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ VideoRecordingDetails 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of VideoRecordingDetails.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ VideoRecordingDetails
Returns a new instance of VideoRecordingDetails.
      8867 8868 8869  | 
    
      # File 'lib/google/apis/youtube_v3/classes.rb', line 8867 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#location ⇒ Google::Apis::YoutubeV3::GeoPoint
Geographical coordinates of a point, in WGS84.
Corresponds to the JSON property location
      8855 8856 8857  | 
    
      # File 'lib/google/apis/youtube_v3/classes.rb', line 8855 def location @location end  | 
  
#location_description ⇒ String
The text description of the location where the video was recorded.
Corresponds to the JSON property locationDescription
      8860 8861 8862  | 
    
      # File 'lib/google/apis/youtube_v3/classes.rb', line 8860 def location_description @location_description end  | 
  
#recording_date ⇒ DateTime
The date and time when the video was recorded.
Corresponds to the JSON property recordingDate
      8865 8866 8867  | 
    
      # File 'lib/google/apis/youtube_v3/classes.rb', line 8865 def recording_date @recording_date end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      8872 8873 8874 8875 8876  | 
    
      # File 'lib/google/apis/youtube_v3/classes.rb', line 8872 def update!(**args) @location = args[:location] if args.key?(:location) @location_description = args[:location_description] if args.key?(:location_description) @recording_date = args[:recording_date] if args.key?(:recording_date) end  |