Class ConferenceRecordsResource.ListRequest
Lists the conference records. By default, ordered by start time and in descending order.
Inheritance
Inherited Members
Namespace: Google.Apis.Meet.v2
Assembly: Google.Apis.Meet.v2.dll
Syntax
public class ConferenceRecordsResource.ListRequest : MeetBaseServiceRequest<ListConferenceRecordsResponse>, IClientServiceRequest<ListConferenceRecordsResponse>, IClientServiceRequest
Constructors
ListRequest(IClientService)
Constructs a new List request.
Declaration
public ListRequest(IClientService service)
Parameters
| Type | Name | Description |
|---|---|---|
| IClientService | service |
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
[RequestParameter("filter", RequestParameterType.Query)]
public virtual string Filter { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
| Type | Description |
|---|---|
| string |
Overrides
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
| Type | Description |
|---|---|
| string |
Overrides
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
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
PageToken
Optional. Page token returned from previous List Call.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
| Type | Description |
|---|---|
| string |
Overrides
Methods
InitParameters()
Initializes List parameter list.
Declaration
protected override void InitParameters()