PaymentRequest コンストラクター

定義

オーバーロード

PaymentRequest()

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

PaymentRequest(String, IList<PaymentMethodData>, PaymentDetails, PaymentOptions, String)

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

PaymentRequest()

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

public PaymentRequest ();
Public Sub New ()

適用対象

PaymentRequest(String, IList<PaymentMethodData>, PaymentDetails, PaymentOptions, String)

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

public PaymentRequest (string id = default, System.Collections.Generic.IList<Microsoft.Bot.Schema.PaymentMethodData> methodData = default, Microsoft.Bot.Schema.PaymentDetails details = default, Microsoft.Bot.Schema.PaymentOptions options = default, string expires = default);
new Microsoft.Bot.Schema.PaymentRequest : string * System.Collections.Generic.IList<Microsoft.Bot.Schema.PaymentMethodData> * Microsoft.Bot.Schema.PaymentDetails * Microsoft.Bot.Schema.PaymentOptions * string -> Microsoft.Bot.Schema.PaymentRequest
Public Sub New (Optional id As String = Nothing, Optional methodData As IList(Of PaymentMethodData) = Nothing, Optional details As PaymentDetails = Nothing, Optional options As PaymentOptions = Nothing, Optional expires As String = Nothing)

パラメーター

id
String

この支払い要求の ID。

methodData
IList<PaymentMethodData>

この要求に対して許可されている支払い方法。

details
PaymentDetails

この要求の詳細。

options
PaymentOptions

支払い要求に必要なオプションに関する情報を提供します。

expires
String

この要求の有効期限 (ISO 8601 期間形式 (例: 'P1D')。

適用対象