Class ConferenceRecordsResource.ParticipantsResource.ListRequest
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'.
Inheritance
Inherited Members
Namespace: Google.Apis.Meet.v2
Assembly: Google.Apis.Meet.v2.dll
Syntax
public class ConferenceRecordsResource.ParticipantsResource.ListRequest : MeetBaseServiceRequest<ListParticipantsResponse>, IClientServiceRequest<ListParticipantsResponse>, IClientServiceRequest
Constructors
ListRequest(IClientService, string)
Constructs a new List request.
Declaration
public ListRequest(IClientService service, string parent)
Parameters
| Type | Name | Description |
|---|---|---|
| IClientService | service | |
| string | parent |
Properties
Filter
Optional. User specified filtering condition in EBNF
format. The following are the
filterable fields: * earliest_start_time * latest_end_time For example, latest_end_time IS NULL returns active participants in the conference.
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
Maximum number of participants to return. The service might return fewer than this value. If unspecified, at most 100 participants are returned. The maximum value is 250; values above 250 are coerced to 250. Maximum might change in the future.
Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
PageToken
Page token returned from previous List Call.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Parent
Required. Format: conferenceRecords/{conference_record}
Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
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()