共用方式為


PaymentResponse 建構函式

定義

多載

PaymentResponse()

初始化 PaymentResponse 類別的新執行個體。

PaymentResponse(String, Object, PaymentAddress, String, String, String)

初始化 PaymentResponse 類別的新執行個體。

PaymentResponse()

初始化 PaymentResponse 類別的新執行個體。

public PaymentResponse ();
Public Sub New ()

適用於

PaymentResponse(String, Object, PaymentAddress, String, String, String)

初始化 PaymentResponse 類別的新執行個體。

public PaymentResponse (string methodName = default, object details = default, Microsoft.Bot.Schema.PaymentAddress shippingAddress = default, string shippingOption = default, string payerEmail = default, string payerPhone = default);
new Microsoft.Bot.Schema.PaymentResponse : string * obj * Microsoft.Bot.Schema.PaymentAddress * string * string * string -> Microsoft.Bot.Schema.PaymentResponse
Public Sub New (Optional methodName As String = Nothing, Optional details As Object = Nothing, Optional shippingAddress As PaymentAddress = Nothing, Optional shippingOption As String = Nothing, Optional payerEmail As String = Nothing, Optional payerPhone As String = Nothing)

參數

methodName
String

使用者選取要履行交易之付款條件的付款條件識別碼。

details
Object

JSON 可序列化物件,供應商家用來處理交易並判斷成功資金轉移的付款條件特定訊息。

shippingAddress
PaymentAddress

如果在傳遞給 PaymentRequest 建構函式的 PaymentOptions 中,requestShipping 旗標設定為 true,則 shippingAddress 會是使用者選擇的完整和最終寄送位址。

shippingOption
String

如果 requestShipping 旗標在傳遞給 PaymentRequest 建構函式的 PaymentOptions 中設定為 true,則 shippingOption 會是所選出貨選項的 id 屬性。

payerEmail
String

如果 requestPayerEmail 旗標在傳遞給 PaymentRequest 建構函式的 PaymentOptions 中設定為 true,則 payerEmail 會是使用者選擇的電子郵件地址。

payerPhone
String

如果在傳遞給 PaymentRequest 建構函式的 PaymentOptions 中,requestPayerPhone 旗標設定為 true,則 payerPhone 會是使用者所選擇的電話號碼。

適用於