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
Заголовок карты.
- items
- IList<ReceiptItem>
Массив элементов квитанции.
- tap
- CardAction
Это действие будет активировано, когда пользователь касается карточки.
- total
- String
Общая сумма выплаченных денег (или к оплате).
- tax
- String
Общая сумма уплаченного налога (или к оплате).
- vat
- String
Общая сумма НДС, уплаченная (или оплачиваемая).
- buttons
- IList<CardAction>
Набор действий, применимых к текущей карточке.