Jaa


PaymentShippingOption Constructors

Definition

Overloads

PaymentShippingOption()

Initializes a new instance of the PaymentShippingOption class.

PaymentShippingOption(String, String, PaymentCurrencyAmount, Nullable<Boolean>)

Initializes a new instance of the PaymentShippingOption class.

PaymentShippingOption()

Initializes a new instance of the PaymentShippingOption class.

public PaymentShippingOption ();
Public Sub New ()

Applies to

PaymentShippingOption(String, String, PaymentCurrencyAmount, Nullable<Boolean>)

Initializes a new instance of the PaymentShippingOption class.

public PaymentShippingOption (string id = default, string label = default, Microsoft.Bot.Schema.PaymentCurrencyAmount amount = default, bool? selected = default);
new Microsoft.Bot.Schema.PaymentShippingOption : string * string * Microsoft.Bot.Schema.PaymentCurrencyAmount * Nullable<bool> -> Microsoft.Bot.Schema.PaymentShippingOption
Public Sub New (Optional id As String = Nothing, Optional label As String = Nothing, Optional amount As PaymentCurrencyAmount = Nothing, Optional selected As Nullable(Of Boolean) = Nothing)

Parameters

id
String

String identifier used to reference this PaymentShippingOption.

label
String

Human-readable description of the item.

amount
PaymentCurrencyAmount

Contains the monetary amount for the item.

selected
Nullable<Boolean>

Indicates whether this is the default selected PaymentShippingOption.

Applies to