Show / Hide Table of Contents

Class ConferenceRecordsService.ConferenceRecordsServiceBase

Base class for server-side implementations of ConferenceRecordsService

Inheritance
object
ConferenceRecordsService.ConferenceRecordsServiceBase
Inherited Members
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ToString()
Namespace: Google.Apps.Meet.V2Beta
Assembly: Google.Apps.Meet.V2Beta.dll
Syntax
[BindServiceMethod(typeof(ConferenceRecordsService), "BindService")]
public abstract class ConferenceRecordsService.ConferenceRecordsServiceBase

Methods

GetConferenceRecord(GetConferenceRecordRequest, ServerCallContext)

Gets a conference record by conference ID.

Declaration
public virtual Task<ConferenceRecord> GetConferenceRecord(GetConferenceRecordRequest request, ServerCallContext context)
Parameters
Type Name Description
GetConferenceRecordRequest request

The request received from the client.

ServerCallContext context

The context of the server-side call handler being invoked.

Returns
Type Description
Task<ConferenceRecord>

The response to send back to the client (wrapped by a task).

GetParticipant(GetParticipantRequest, ServerCallContext)

Gets a participant by participant ID.

Declaration
public virtual Task<Participant> GetParticipant(GetParticipantRequest request, ServerCallContext context)
Parameters
Type Name Description
GetParticipantRequest request

The request received from the client.

ServerCallContext context

The context of the server-side call handler being invoked.

Returns
Type Description
Task<Participant>

The response to send back to the client (wrapped by a task).

GetParticipantSession(GetParticipantSessionRequest, ServerCallContext)

Gets a participant session by participant session ID.

Declaration
public virtual Task<ParticipantSession> GetParticipantSession(GetParticipantSessionRequest request, ServerCallContext context)
Parameters
Type Name Description
GetParticipantSessionRequest request

The request received from the client.

ServerCallContext context

The context of the server-side call handler being invoked.

Returns
Type Description
Task<ParticipantSession>

The response to send back to the client (wrapped by a task).

GetRecording(GetRecordingRequest, ServerCallContext)

Gets a recording by recording ID.

Declaration
public virtual Task<Recording> GetRecording(GetRecordingRequest request, ServerCallContext context)
Parameters
Type Name Description
GetRecordingRequest request

The request received from the client.

ServerCallContext context

The context of the server-side call handler being invoked.

Returns
Type Description
Task<Recording>

The response to send back to the client (wrapped by a task).

GetTranscript(GetTranscriptRequest, ServerCallContext)

Gets a transcript by transcript ID.

Declaration
public virtual Task<Transcript> GetTranscript(GetTranscriptRequest request, ServerCallContext context)
Parameters
Type Name Description
GetTranscriptRequest request

The request received from the client.

ServerCallContext context

The context of the server-side call handler being invoked.

Returns
Type Description
Task<Transcript>

The response to send back to the client (wrapped by a task).

GetTranscriptEntry(GetTranscriptEntryRequest, ServerCallContext)

Gets a TranscriptEntry resource by entry ID.

Note: The transcript entries returned by the Google Meet API might not match the transcription found in the Google Docs transcript file. This can occur when the Google Docs transcript file is modified after generation.

Declaration
public virtual Task<TranscriptEntry> GetTranscriptEntry(GetTranscriptEntryRequest request, ServerCallContext context)
Parameters
Type Name Description
GetTranscriptEntryRequest request

The request received from the client.

ServerCallContext context

The context of the server-side call handler being invoked.

Returns
Type Description
Task<TranscriptEntry>

The response to send back to the client (wrapped by a task).

ListConferenceRecords(ListConferenceRecordsRequest, ServerCallContext)

Lists the conference records. By default, ordered by start time and in descending order.

Declaration
public virtual Task<ListConferenceRecordsResponse> ListConferenceRecords(ListConferenceRecordsRequest request, ServerCallContext context)
Parameters
Type Name Description
ListConferenceRecordsRequest request

The request received from the client.

ServerCallContext context

The context of the server-side call handler being invoked.

Returns
Type Description
Task<ListConferenceRecordsResponse>

The response to send back to the client (wrapped by a task).

ListParticipantSessions(ListParticipantSessionsRequest, ServerCallContext)

Lists the participant sessions of a participant in a conference record. By default, ordered by join time and in descending order. This API supports fields as standard parameters like every other API. However, when the fields request parameter is omitted this API defaults to 'participantsessions/*, next_page_token'.

Declaration
public virtual Task<ListParticipantSessionsResponse> ListParticipantSessions(ListParticipantSessionsRequest request, ServerCallContext context)
Parameters
Type Name Description
ListParticipantSessionsRequest request

The request received from the client.

ServerCallContext context

The context of the server-side call handler being invoked.

Returns
Type Description
Task<ListParticipantSessionsResponse>

The response to send back to the client (wrapped by a task).

ListParticipants(ListParticipantsRequest, ServerCallContext)

Lists the participants in a conference record. By default, ordered by join time and in descending order. This API supports fields as standard parameters like every other API. However, when the fields request parameter is omitted, this API defaults to 'participants/*, next_page_token'.

Declaration
public virtual Task<ListParticipantsResponse> ListParticipants(ListParticipantsRequest request, ServerCallContext context)
Parameters
Type Name Description
ListParticipantsRequest request

The request received from the client.

ServerCallContext context

The context of the server-side call handler being invoked.

Returns
Type Description
Task<ListParticipantsResponse>

The response to send back to the client (wrapped by a task).

ListRecordings(ListRecordingsRequest, ServerCallContext)

Lists the recording resources from the conference record. By default, ordered by start time and in ascending order.

Declaration
public virtual Task<ListRecordingsResponse> ListRecordings(ListRecordingsRequest request, ServerCallContext context)
Parameters
Type Name Description
ListRecordingsRequest request

The request received from the client.

ServerCallContext context

The context of the server-side call handler being invoked.

Returns
Type Description
Task<ListRecordingsResponse>

The response to send back to the client (wrapped by a task).

ListTranscriptEntries(ListTranscriptEntriesRequest, ServerCallContext)

Lists the structured transcript entries per transcript. By default, ordered by start time and in ascending order.

Note: The transcript entries returned by the Google Meet API might not match the transcription found in the Google Docs transcript file. This can occur when the Google Docs transcript file is modified after generation.

Declaration
public virtual Task<ListTranscriptEntriesResponse> ListTranscriptEntries(ListTranscriptEntriesRequest request, ServerCallContext context)
Parameters
Type Name Description
ListTranscriptEntriesRequest request

The request received from the client.

ServerCallContext context

The context of the server-side call handler being invoked.

Returns
Type Description
Task<ListTranscriptEntriesResponse>

The response to send back to the client (wrapped by a task).

ListTranscripts(ListTranscriptsRequest, ServerCallContext)

Lists the set of transcripts from the conference record. By default, ordered by start time and in ascending order.

Declaration
public virtual Task<ListTranscriptsResponse> ListTranscripts(ListTranscriptsRequest request, ServerCallContext context)
Parameters
Type Name Description
ListTranscriptsRequest request

The request received from the client.

ServerCallContext context

The context of the server-side call handler being invoked.

Returns
Type Description
Task<ListTranscriptsResponse>

The response to send back to the client (wrapped by a task).

In this article
Back to top Generated by DocFX