Show / Hide Table of Contents

Class ProjectsResource.LocationsResource.ConversationsResource.CallMatchersResource

The "callMatchers" collection of methods.

Inheritance
System.Object
ProjectsResource.LocationsResource.ConversationsResource.CallMatchersResource
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 CallMatchersResource

Constructors

CallMatchersResource(IClientService)

Constructs a new resource.

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

Methods

Create(GoogleCloudDialogflowV2CreateCallMatcherRequest, String)

Creates a call matcher that links incoming SIP calls to the specified conversation if they fulfill specified criteria.

Declaration
public virtual ProjectsResource.LocationsResource.ConversationsResource.CallMatchersResource.CreateRequest Create(GoogleCloudDialogflowV2CreateCallMatcherRequest body, string parent)
Parameters
Type Name Description
GoogleCloudDialogflowV2CreateCallMatcherRequest body

The body of the request.

System.String parent

Required. Resource identifier of the conversation adding the call matcher. Format: projects//locations//conversations/.

Returns
Type Description
ProjectsResource.LocationsResource.ConversationsResource.CallMatchersResource.CreateRequest

Delete(String)

Requests deletion of a call matcher.

Declaration
public virtual ProjectsResource.LocationsResource.ConversationsResource.CallMatchersResource.DeleteRequest Delete(string name)
Parameters
Type Name Description
System.String name

Required. The unique identifier of the CallMatcher to delete. Format: projects//locations//conversations//callMatchers/.

Returns
Type Description
ProjectsResource.LocationsResource.ConversationsResource.CallMatchersResource.DeleteRequest

List(String)

Returns the list of all call matchers in the specified conversation.

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

Required. The conversation to list all call matchers from. Format: projects//locations//conversations/.

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