Package com.zendesk.sdk.feedback
Interface ZendeskFeedbackConfiguration
-
- All Superinterfaces:
- java.io.Serializable
- All Known Implementing Classes:
- BaseZendeskFeedbackConfiguration, WrappedZendeskFeedbackConfiguration
public interface ZendeskFeedbackConfiguration extends java.io.Serializable
This interface defines what wil be included in the request that is created when one of the feedback mechanisms is used.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description java.lang.String
getAdditionalInfo()
Gets any additional information that you wish to include in the request's descriptionjava.lang.String
getRequestSubject()
Providing feedback to Zendesk will result in the creation of a request, which will have the subject specified by this method.java.util.List<java.lang.String>
getTags()
Gets a list of tags to be included in the request that will be created by the feedback mechanisms
-
-
-
Method Detail
-
getTags
java.util.List<java.lang.String> getTags()
Gets a list of tags to be included in the request that will be created by the feedback mechanisms- Returns:
- The list of tags to include, or null if you don't want any tags.
-
getAdditionalInfo
java.lang.String getAdditionalInfo()
Gets any additional information that you wish to include in the request's descriptionThis information will be appended to any user entered text.
- Returns:
- The additional information to include
-
getRequestSubject
java.lang.String getRequestSubject()
Providing feedback to Zendesk will result in the creation of a request, which will have the subject specified by this method.- Returns:
- The subject of the request that will be created
-
-