com.sap.cloud.sdk.services.recastai.botresponses.CardContent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of recast-ai Show documentation
Show all versions of recast-ai Show documentation
Integration of SAP Conversational AI, aka Recast AI
(Beta release, still subject to change - up to discontinuation of module).
/*
* Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved.
*/
package com.sap.cloud.sdk.services.recastai.botresponses;
import java.util.List;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import com.google.common.annotations.Beta;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import lombok.NoArgsConstructor;
/**
* This class wraps around the content of a card to be included in a Response.
*/
@Beta
@NoArgsConstructor
public class CardContent
{
@SerializedName( "title" )
@Expose
private String title;
@SerializedName( "subtitle" )
@Expose
private String subtitle;
@SerializedName( "imageUrl" )
@Expose
private String imageUrl;
@SerializedName( "buttons" )
@Expose
private List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy