PaymentProperties Constructors

Definition

Overloads

PaymentProperties()

Initializes a new instance of the PaymentProperties class.

PaymentProperties(String, Amount, Nullable<DateTime>, String, String)

Initializes a new instance of the PaymentProperties class.

PaymentProperties()

Initializes a new instance of the PaymentProperties class.

public PaymentProperties ();
Public Sub New ()

Applies to

PaymentProperties(String, Amount, Nullable<DateTime>, String, String)

Initializes a new instance of the PaymentProperties class.

public PaymentProperties (string paymentType = default, Microsoft.Azure.Management.Billing.Models.Amount amount = default, DateTime? date = default, string paymentMethodFamily = default, string paymentMethodType = default);
new Microsoft.Azure.Management.Billing.Models.PaymentProperties : string * Microsoft.Azure.Management.Billing.Models.Amount * Nullable<DateTime> * string * string -> Microsoft.Azure.Management.Billing.Models.PaymentProperties
Public Sub New (Optional paymentType As String = Nothing, Optional amount As Amount = Nothing, Optional date As Nullable(Of DateTime) = Nothing, Optional paymentMethodFamily As String = Nothing, Optional paymentMethodType As String = Nothing)

Parameters

paymentType
String

The type of payment.

amount
Amount

The paid amount.

date
Nullable<DateTime>

The date when the payment was made.

paymentMethodFamily
String

The family of payment method. Possible values include: 'Credits', 'CheckWire', 'CreditCard', 'None'

paymentMethodType
String

The type of payment method.

Applies to