Class ProjectsResource.LocationsResource.AppsResource.ConversationsResource.ListRequest
Lists conversations in the given app.
Inheritance
Inherited Members
Namespace: Google.Apis.CustomerEngagementSuite.v1
Assembly: Google.Apis.CustomerEngagementSuite.v1.dll
Syntax
public class ProjectsResource.LocationsResource.AppsResource.ConversationsResource.ListRequest : CustomerEngagementSuiteBaseServiceRequest<ListConversationsResponse>, IClientServiceRequest<ListConversationsResponse>, 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. Filter to be applied when listing the conversations. See https://google.aip.dev/160 for more details.
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. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.
Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
PageToken
Optional. The next_page_token value returned from a previous list AgentService.ListConversations call.
Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Parent
Required. The resource name of the app to list conversations from.
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
Source
Optional. Indicate the source of the conversation. If not set, Source.Live will be applied
by default. Will be deprecated in favor of sources field.
Declaration
[RequestParameter("source", RequestParameterType.Query)]
public virtual ProjectsResource.LocationsResource.AppsResource.ConversationsResource.ListRequest.SourceEnum? Source { get; set; }
Property Value
| Type | Description |
|---|---|
| ProjectsResource.LocationsResource.AppsResource.ConversationsResource.ListRequest.SourceEnum? |
Sources
Optional. Indicate the sources of the conversations. If not set, all available sources will be applied by default.
Declaration
[RequestParameter("sources", RequestParameterType.Query)]
public virtual ProjectsResource.LocationsResource.AppsResource.ConversationsResource.ListRequest.SourcesEnum? Sources { get; set; }
Property Value
| Type | Description |
|---|---|
| ProjectsResource.LocationsResource.AppsResource.ConversationsResource.ListRequest.SourcesEnum? |
Remarks
Use this property to set a single value for the parameter, or SourcesList to set multiple values. Do not set both properties.
SourcesList
Optional. Indicate the sources of the conversations. If not set, all available sources will be applied by default.
Declaration
[RequestParameter("sources", RequestParameterType.Query)]
public virtual Repeatable<ProjectsResource.LocationsResource.AppsResource.ConversationsResource.ListRequest.SourcesEnum> SourcesList { get; set; }
Property Value
| Type | Description |
|---|---|
| Repeatable<ProjectsResource.LocationsResource.AppsResource.ConversationsResource.ListRequest.SourcesEnum> |
Remarks
Use this property to set one or more values for the parameter. Do not set both this property and Sources.
Methods
InitParameters()
Initializes List parameter list.
Declaration
protected override void InitParameters()