Share via


ReceiptItem Constructors

Definition

Overloads

ReceiptItem()

Initializes a new instance of the ReceiptItem class.

ReceiptItem(String, String, String, CardImage, String, String, CardAction)

Initializes a new instance of the ReceiptItem class.

ReceiptItem()

Initializes a new instance of the ReceiptItem class.

public ReceiptItem ();
Public Sub New ()

Applies to

ReceiptItem(String, String, String, CardImage, String, String, CardAction)

Initializes a new instance of the ReceiptItem class.

public ReceiptItem (string title = default, string subtitle = default, string text = default, Microsoft.Bot.Schema.CardImage image = default, string price = default, string quantity = default, Microsoft.Bot.Schema.CardAction tap = default);
new Microsoft.Bot.Schema.ReceiptItem : string * string * string * Microsoft.Bot.Schema.CardImage * string * string * Microsoft.Bot.Schema.CardAction -> Microsoft.Bot.Schema.ReceiptItem
Public Sub New (Optional title As String = Nothing, Optional subtitle As String = Nothing, Optional text As String = Nothing, Optional image As CardImage = Nothing, Optional price As String = Nothing, Optional quantity As String = Nothing, Optional tap As CardAction = Nothing)

Parameters

title
String

Title of the Card.

subtitle
String

Subtitle appears just below Title field, differs from Title in font styling only.

text
String

Text field appears just below subtitle, differs from Subtitle in font styling only.

image
CardImage

Image.

price
String

Amount with currency.

quantity
String

Number of items of given kind.

tap
CardAction

This action will be activated when user taps on the Item bubble.

Applies to