Class: Google::Apis::YoutubeV3::VideoRecordingDetails

Inherits:
Object
  • Object
show all
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

Recording information associated with the video.

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) ⇒ VideoRecordingDetails

Returns a new instance of VideoRecordingDetails.



7996
7997
7998
# File 'generated/google/apis/youtube_v3/classes.rb', line 7996

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

Instance Attribute Details

#locationGoogle::Apis::YoutubeV3::GeoPoint

Geographical coordinates of a point, in WGS84. Corresponds to the JSON property location



7983
7984
7985
# File 'generated/google/apis/youtube_v3/classes.rb', line 7983

def location
  @location
end

#location_descriptionString

The text description of the location where the video was recorded. Corresponds to the JSON property locationDescription

Returns:

  • (String)


7988
7989
7990
# File 'generated/google/apis/youtube_v3/classes.rb', line 7988

def location_description
  @location_description
end

#recording_dateDateTime

The date and time when the video was recorded. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sssZ) format. Corresponds to the JSON property recordingDate

Returns:

  • (DateTime)


7994
7995
7996
# File 'generated/google/apis/youtube_v3/classes.rb', line 7994

def recording_date
  @recording_date
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8001
8002
8003
8004
8005
# File 'generated/google/apis/youtube_v3/classes.rb', line 8001

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