class Google::Apis::CalendarV3::CreateConferenceRequest

Attributes

conference_solution_key[RW]

The conference solution, such as Hangouts or Google Meet. Corresponds to the JSON property `conferenceSolutionKey` @return [Google::Apis::CalendarV3::ConferenceSolutionKey]

request_id[RW]

The client-generated unique ID for this request. Clients should regenerate this ID for every new request. If an ID provided is the same as for the previous request, the request is ignored. Corresponds to the JSON property `requestId` @return [String]

status[RW]

The status of the conference create request. Corresponds to the JSON property `status` @return [Google::Apis::CalendarV3::ConferenceRequestStatus]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/calendar_v3/classes.rb, line 871
def update!(**args)
  @conference_solution_key = args[:conference_solution_key] if args.key?(:conference_solution_key)
  @request_id = args[:request_id] if args.key?(:request_id)
  @status = args[:status] if args.key?(:status)
end