PaymentMethodData Constructors

Definition

Overloads

PaymentMethodData()

Initializes a new instance of the PaymentMethodData class.

PaymentMethodData(IList<String>, Object)

Initializes a new instance of the PaymentMethodData class.

PaymentMethodData()

Initializes a new instance of the PaymentMethodData class.

public PaymentMethodData ();
Public Sub New ()

Applies to

PaymentMethodData(IList<String>, Object)

Initializes a new instance of the PaymentMethodData class.

public PaymentMethodData (System.Collections.Generic.IList<string> supportedMethods = default, object data = default);
new Microsoft.Bot.Schema.PaymentMethodData : System.Collections.Generic.IList<string> * obj -> Microsoft.Bot.Schema.PaymentMethodData
Public Sub New (Optional supportedMethods As IList(Of String) = Nothing, Optional data As Object = Nothing)

Parameters

supportedMethods
IList<String>

Required sequence of strings containing payment method identifiers for payment methods that the merchant web site accepts.

data
Object

A JSON-serializable object that provides optional information that might be needed by the supported payment methods.

Applies to