Class: Google::Apis::CalendarV3::ConferenceData

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ConferenceData

Returns a new instance of ConferenceData.



683
684
685
# File 'lib/google/apis/calendar_v3/classes.rb', line 683

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

Instance Attribute Details

#conference_idString

The ID of the conference. Can be used by developers to keep track of conferences, should not be displayed to users. The ID value is formed differently for each conference solution type:

  • eventHangout: ID is not set.
  • eventNamedHangout: ID is the name of the Hangout.
  • hangoutsMeet: ID is the 10-letter meeting code, for example aaa-bbbb-ccc.
  • addOn: ID is defined by the third-party provider. Optional. Corresponds to the JSON property conferenceId

Returns:

  • (String)


633
634
635
# File 'lib/google/apis/calendar_v3/classes.rb', line 633

def conference_id
  @conference_id
end

#conference_solutionGoogle::Apis::CalendarV3::ConferenceSolution

The conference solution, such as Hangouts or Google Meet. Unset for a conference with a failed create request. Either conferenceSolution and at least one entryPoint, or createRequest is required. Corresponds to the JSON property conferenceSolution



641
642
643
# File 'lib/google/apis/calendar_v3/classes.rb', line 641

def conference_solution
  @conference_solution
end

#create_requestGoogle::Apis::CalendarV3::CreateConferenceRequest

A request to generate a new conference and attach it to the event. The data is generated asynchronously. To see whether the data is present check the status field. Either conferenceSolution and at least one entryPoint, or createRequest is required. Corresponds to the JSON property createRequest



650
651
652
# File 'lib/google/apis/calendar_v3/classes.rb', line 650

def create_request
  @create_request
end

#entry_pointsArray<Google::Apis::CalendarV3::EntryPoint>

Information about individual conference entry points, such as URLs or phone numbers. All of them must belong to the same conference. Either conferenceSolution and at least one entryPoint, or createRequest is required. Corresponds to the JSON property entryPoints



659
660
661
# File 'lib/google/apis/calendar_v3/classes.rb', line 659

def entry_points
  @entry_points
end

#notesString

Additional notes (such as instructions from the domain administrator, legal notices) to display to the user. Can contain HTML. The maximum length is 2048 characters. Optional. Corresponds to the JSON property notes

Returns:

  • (String)


666
667
668
# File 'lib/google/apis/calendar_v3/classes.rb', line 666

def notes
  @notes
end

#parametersGoogle::Apis::CalendarV3::ConferenceParameters

Additional properties related to a conference. An example would be a solution- specific setting for enabling video streaming. Corresponds to the JSON property parameters



672
673
674
# File 'lib/google/apis/calendar_v3/classes.rb', line 672

def parameters
  @parameters
end

#signatureString

The signature of the conference data. Generated on server side. Must be preserved while copying the conference data between events, otherwise the conference data will not be copied. Unset for a conference with a failed create request. Optional for a conference with a pending create request. Corresponds to the JSON property signature

Returns:

  • (String)


681
682
683
# File 'lib/google/apis/calendar_v3/classes.rb', line 681

def signature
  @signature
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



688
689
690
691
692
693
694
695
696
# File 'lib/google/apis/calendar_v3/classes.rb', line 688

def update!(**args)
  @conference_id = args[:conference_id] if args.key?(:conference_id)
  @conference_solution = args[:conference_solution] if args.key?(:conference_solution)
  @create_request = args[:create_request] if args.key?(:create_request)
  @entry_points = args[:entry_points] if args.key?(:entry_points)
  @notes = args[:notes] if args.key?(:notes)
  @parameters = args[:parameters] if args.key?(:parameters)
  @signature = args[:signature] if args.key?(:signature)
end