Class: Google::Apis::MeetV2::Recording

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/meet_v2/classes.rb,
lib/google/apis/meet_v2/representations.rb,
lib/google/apis/meet_v2/representations.rb

Overview

Metadata about a recording created during a conference.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Recording

Returns a new instance of Recording.



504
505
506
# File 'lib/google/apis/meet_v2/classes.rb', line 504

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

Instance Attribute Details

#drive_destinationGoogle::Apis::MeetV2::DriveDestination

Export location where a recording file is saved in Google Drive. Corresponds to the JSON property driveDestination



480
481
482
# File 'lib/google/apis/meet_v2/classes.rb', line 480

def drive_destination
  @drive_destination
end

#end_timeString

Output only. Timestamp when the recording ended. Corresponds to the JSON property endTime

Returns:

  • (String)


485
486
487
# File 'lib/google/apis/meet_v2/classes.rb', line 485

def end_time
  @end_time
end

#nameString

Output only. Resource name of the recording. Format: conferenceRecords/ conference_record/recordings/recordingwhererecording`is a 1:1 mapping to each unique recording session during the conference. Corresponds to the JSON propertyname`

Returns:

  • (String)


492
493
494
# File 'lib/google/apis/meet_v2/classes.rb', line 492

def name
  @name
end

#start_timeString

Output only. Timestamp when the recording started. Corresponds to the JSON property startTime

Returns:

  • (String)


497
498
499
# File 'lib/google/apis/meet_v2/classes.rb', line 497

def start_time
  @start_time
end

#stateString

Output only. Current state. Corresponds to the JSON property state

Returns:

  • (String)


502
503
504
# File 'lib/google/apis/meet_v2/classes.rb', line 502

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



509
510
511
512
513
514
515
# File 'lib/google/apis/meet_v2/classes.rb', line 509

def update!(**args)
  @drive_destination = args[:drive_destination] if args.key?(:drive_destination)
  @end_time = args[:end_time] if args.key?(:end_time)
  @name = args[:name] if args.key?(:name)
  @start_time = args[:start_time] if args.key?(:start_time)
  @state = args[:state] if args.key?(:state)
end