Class WebMessagingGeneric
- java.lang.Object
-
- cloud.genesys.webmessaging.sdk.model.WebMessagingGeneric
-
- All Implemented Interfaces:
Serializable
public class WebMessagingGeneric extends Object implements Serializable
Generic content object. (Deprecated- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WebMessagingGeneric()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description WebMessagingGenericactions(ContentActions actions)Actions to be taken.WebMessagingGenericcomponents(List<ButtonComponent> components)An array of component objects.WebMessagingGenericdescription(String description)Text to show in the description.booleanequals(Object o)ContentActionsgetActions()List<ButtonComponent>getComponents()StringgetDescription()StringgetImage()StringgetTitle()inthashCode()WebMessagingGenericimage(String image)URL of an image.voidsetActions(ContentActions actions)voidsetComponents(List<ButtonComponent> components)voidsetDescription(String description)voidsetImage(String image)voidsetTitle(String title)WebMessagingGenerictitle(String title)Text to show in the title.StringtoString()
-
-
-
Method Detail
-
title
public WebMessagingGeneric title(String title)
Text to show in the title.
-
getTitle
public String getTitle()
-
setTitle
public void setTitle(String title)
-
description
public WebMessagingGeneric description(String description)
Text to show in the description.
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
image
public WebMessagingGeneric image(String image)
URL of an image.
-
getImage
public String getImage()
-
setImage
public void setImage(String image)
-
actions
public WebMessagingGeneric actions(ContentActions actions)
Actions to be taken.
-
getActions
public ContentActions getActions()
-
setActions
public void setActions(ContentActions actions)
-
components
public WebMessagingGeneric components(List<ButtonComponent> components)
An array of component objects.
-
getComponents
public List<ButtonComponent> getComponents()
-
setComponents
public void setComponents(List<ButtonComponent> components)
-
-