Поделиться через


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

Общая сумма НДС, уплаченная (или оплачиваемая).

buttons
IList<CardAction>

Набор действий, применимых к текущей карточке.

Применяется к