Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.06 KB

File metadata and controls

27 lines (20 loc) · 1.06 KB

RbmCardContent

Must contain at least one of title, description, or media to be valid.

Properties

Name Type Description Notes
title string The title of the card. Must be 200 characters or less. [optional] [default to undefined]
description string The description of the card. Must be 2000 characters or less. [optional] [default to undefined]
media RbmCardContentMedia [optional] [default to undefined]
suggestions Array<MultiChannelAction> An array of suggested actions for the recipient that will be displayed on the rich card. [optional] [default to undefined]

Example

import { RbmCardContent } from 'bandwidth-sdk';

const instance: RbmCardContent = {
    title,
    description,
    media,
    suggestions,
};

[Back to Model list] [Back to API list] [Back to README]