MicrosoftPayMethodData Constructors

Definition

Overloads

MicrosoftPayMethodData()

Initializes a new instance of the MicrosoftPayMethodData class.

MicrosoftPayMethodData(String, IList<String>, IList<String>)

Initializes a new instance of the MicrosoftPayMethodData class.

MicrosoftPayMethodData(String, IList<String>, IList<String>, Boolean)

Initializes a new instance of the MicrosoftPayMethodData class.

MicrosoftPayMethodData()

Initializes a new instance of the MicrosoftPayMethodData class.

public MicrosoftPayMethodData ();
Public Sub New ()

Applies to

MicrosoftPayMethodData(String, IList<String>, IList<String>)

Initializes a new instance of the MicrosoftPayMethodData class.

public MicrosoftPayMethodData (string merchantId = default, System.Collections.Generic.IList<string> supportedNetworks = default, System.Collections.Generic.IList<string> supportedTypes = default);
new Microsoft.Bot.Schema.MicrosoftPayMethodData : string * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> -> Microsoft.Bot.Schema.MicrosoftPayMethodData
Public Sub New (Optional merchantId As String = Nothing, Optional supportedNetworks As IList(Of String) = Nothing, Optional supportedTypes As IList(Of String) = Nothing)

Parameters

merchantId
String

Microsoft Pay Merchant ID.

supportedNetworks
IList<String>

Supported payment networks (e.g., "visa" and "mastercard").

supportedTypes
IList<String>

Supported payment types (e.g., "credit").

Applies to

MicrosoftPayMethodData(String, IList<String>, IList<String>, Boolean)

Initializes a new instance of the MicrosoftPayMethodData class.

public MicrosoftPayMethodData (string merchantId = default, System.Collections.Generic.IList<string> supportedNetworks = default, System.Collections.Generic.IList<string> supportedTypes = default, bool testMode = false);
new Microsoft.Bot.Schema.MicrosoftPayMethodData : string * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * bool -> Microsoft.Bot.Schema.MicrosoftPayMethodData
Public Sub New (Optional merchantId As String = Nothing, Optional supportedNetworks As IList(Of String) = Nothing, Optional supportedTypes As IList(Of String) = Nothing, Optional testMode As Boolean = false)

Parameters

merchantId
String

merchant Id.

supportedNetworks
IList<String>

supported networks.

supportedTypes
IList<String>

supported types.

testMode
Boolean

test mode.

Applies to