class Google::Apis::YoutubeV3::VideoRecordingDetails

Recording information associated with the video.

Attributes

location[RW]

Geographical coordinates of a point, in WGS84. Corresponds to the JSON property `location` @return [Google::Apis::YoutubeV3::GeoPoint]

location_description[RW]

The text description of the location where the video was recorded. Corresponds to the JSON property `locationDescription` @return [String]

recording_date[RW]

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` @return [DateTime]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/youtube_v3/classes.rb, line 7811
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/youtube_v3/classes.rb, line 7816
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