Show / Hide Table of Contents

Class ListConferenceRecordsRequest

Request to fetch list of conference records per user.

Inheritance
object
ListConferenceRecordsRequest
Implements
IPageRequest
IMessage<ListConferenceRecordsRequest>
IEquatable<ListConferenceRecordsRequest>
IDeepCloneable<ListConferenceRecordsRequest>
IBufferMessage
IMessage
Inherited Members
object.GetHashCode()
object.GetType()
object.ToString()
Namespace: Google.Apps.Meet.V2Beta
Assembly: Google.Apps.Meet.V2Beta.dll
Syntax
public sealed class ListConferenceRecordsRequest : IPageRequest, IMessage<ListConferenceRecordsRequest>, IEquatable<ListConferenceRecordsRequest>, IDeepCloneable<ListConferenceRecordsRequest>, IBufferMessage, IMessage

Constructors

ListConferenceRecordsRequest()

Declaration
public ListConferenceRecordsRequest()

ListConferenceRecordsRequest(ListConferenceRecordsRequest)

Declaration
public ListConferenceRecordsRequest(ListConferenceRecordsRequest other)
Parameters
Type Name Description
ListConferenceRecordsRequest other

Properties

Filter

Optional. User specified filtering condition in EBNF format. The following are the filterable fields:

  • space.meeting_code
  • space.name
  • start_time
  • end_time

For example, consider the following filters:

  • space.name = "spaces/NAME"
  • space.meeting_code = "abc-mnop-xyz"
  • start_time>="2024-01-01T00:00:00.000Z" AND start_time<="2024-01-02T00:00:00.000Z"
  • end_time IS NULL
Declaration
public string Filter { get; set; }
Property Value
Type Description
string

PageSize

Optional. Maximum number of conference records to return. The service might return fewer than this value. If unspecified, at most 25 conference records are returned. The maximum value is 100; values above 100 are coerced to 100. Maximum might change in the future.

Declaration
public int PageSize { get; set; }
Property Value
Type Description
int
Implements
IPageRequest.PageSize

PageToken

Optional. Page token returned from previous List Call.

Declaration
public string PageToken { get; set; }
Property Value
Type Description
string
Implements
IPageRequest.PageToken
In this article
Back to top Generated by DocFX