Show / Hide Table of Contents

Class ProjectsResource.LocationsResource.ConversationsResource.MessagesResource

The "messages" collection of methods.

Inheritance
System.Object
ProjectsResource.LocationsResource.ConversationsResource.MessagesResource
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Dialogflow.v2
Assembly: Google.Apis.Dialogflow.v2.dll
Syntax
public class MessagesResource

Constructors

MessagesResource(IClientService)

Constructs a new resource.

Declaration
public MessagesResource(IClientService service)
Parameters
Type Name Description
IClientService service

Methods

List(String)

Lists messages that belong to a given conversation. messages are ordered by create_time in descending order. To fetch updates without duplication, send request with filter create_time_epoch_microseconds > [first item's create_time of previous request] and empty page_token.

Declaration
public virtual ProjectsResource.LocationsResource.ConversationsResource.MessagesResource.ListRequest List(string parent)
Parameters
Type Name Description
System.String parent

Required. The name of the conversation to list messages for. Format: projects//locations//conversations/

Returns
Type Description
ProjectsResource.LocationsResource.ConversationsResource.MessagesResource.ListRequest
In This Article
Back to top