public class

ConversationFlow

extends Object
implements Flow
java.lang.Object
   ↳ com.helpshift.support.flows.ConversationFlow

Class Overview

Use this to define a Conversation flow for dynamic forms.

Summary

Public Constructors
ConversationFlow(int labelResId)
Constructor to specify a conversation flow with label string resource id.
ConversationFlow(int labelResId, Map config)
Constructor to specify a conversation flow with label string resource id and config.
ConversationFlow(String label)
Constructor to specify a conversation flow with label string.
ConversationFlow(String label, Map config)
Constructor to specify a conversation flow with label string and config.
Public Methods
String getLabel()
Implement this method to return a string which will be used as your custom flow label.
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.helpshift.support.flows.Flow

Public Constructors

public ConversationFlow (int labelResId)

Constructor to specify a conversation flow with label string resource id.

Parameters
labelResId String resource id for flow label.

public ConversationFlow (int labelResId, Map config)

Constructor to specify a conversation flow with label string resource id and config.

Parameters
labelResId String resource id for flow label.
config Extra config.

public ConversationFlow (String label)

Constructor to specify a conversation flow with label string.

Parameters
label String for flow label.

public ConversationFlow (String label, Map config)

Constructor to specify a conversation flow with label string and config.

Parameters
label String resource id for flow label.
config Extra config.

Public Methods

public String getLabel ()

Implement this method to return a string which will be used as your custom flow label.

Returns
  • String value for label.