Share via


ReceiptCard コンストラクター

定義

オーバーロード

ReceiptCard()

ReceiptCard クラスの新しいインスタンスを初期化します。

ReceiptCard(String, IList<Fact>, IList<ReceiptItem>, CardAction, String, String, String, IList<CardAction>)

ReceiptCard クラスの新しいインスタンスを初期化します。

ReceiptCard()

ReceiptCard クラスの新しいインスタンスを初期化します。

public ReceiptCard ();
Public Sub New ()

適用対象

ReceiptCard(String, IList<Fact>, IList<ReceiptItem>, CardAction, String, String, String, IList<CardAction>)

ReceiptCard クラスの新しいインスタンスを初期化します。

public ReceiptCard (string title = default, System.Collections.Generic.IList<Microsoft.Bot.Schema.Fact> facts = default, System.Collections.Generic.IList<Microsoft.Bot.Schema.ReceiptItem> items = default, Microsoft.Bot.Schema.CardAction tap = default, string total = default, string tax = default, string vat = default, System.Collections.Generic.IList<Microsoft.Bot.Schema.CardAction> buttons = default);
new Microsoft.Bot.Schema.ReceiptCard : string * System.Collections.Generic.IList<Microsoft.Bot.Schema.Fact> * System.Collections.Generic.IList<Microsoft.Bot.Schema.ReceiptItem> * Microsoft.Bot.Schema.CardAction * string * string * string * System.Collections.Generic.IList<Microsoft.Bot.Schema.CardAction> -> Microsoft.Bot.Schema.ReceiptCard
Public Sub New (Optional title As String = Nothing, Optional facts As IList(Of Fact) = Nothing, Optional items As IList(Of ReceiptItem) = Nothing, Optional tap As CardAction = Nothing, Optional total As String = Nothing, Optional tax As String = Nothing, Optional vat As String = Nothing, Optional buttons As IList(Of CardAction) = Nothing)

パラメーター

title
String

カードのタイトル。

facts
IList<Fact>

Fact オブジェクトの配列。

items
IList<ReceiptItem>

領収書アイテムの配列。

tap
CardAction

このアクションは、ユーザーがカードをタップするとアクティブになります。

total
String

支払われた金額の合計 (または支払われる金額)。

tax
String

支払われた税金の合計額 (または支払われるもの)。

vat
String

VAT の合計支払額 (または支払われる)。

buttons
IList<CardAction>

現在のカードに適用できるアクションのセット。

適用対象