ValidateAddressResponse Constructors

Definition

Overloads

ValidateAddressResponse()

Initializes a new instance of the ValidateAddressResponse class.

ValidateAddressResponse(String, IList<AddressDetails>, String)

Initializes a new instance of the ValidateAddressResponse class.

ValidateAddressResponse()

Initializes a new instance of the ValidateAddressResponse class.

public ValidateAddressResponse ();
Public Sub New ()

Applies to

ValidateAddressResponse(String, IList<AddressDetails>, String)

Initializes a new instance of the ValidateAddressResponse class.

public ValidateAddressResponse (string status = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Billing.Models.AddressDetails> suggestedAddresses = default, string validationMessage = default);
new Microsoft.Azure.Management.Billing.Models.ValidateAddressResponse : string * System.Collections.Generic.IList<Microsoft.Azure.Management.Billing.Models.AddressDetails> * string -> Microsoft.Azure.Management.Billing.Models.ValidateAddressResponse
Public Sub New (Optional status As String = Nothing, Optional suggestedAddresses As IList(Of AddressDetails) = Nothing, Optional validationMessage As String = Nothing)

Parameters

status
String

status of the address validation. Possible values include: 'Valid', 'Invalid'

suggestedAddresses
IList<AddressDetails>

The list of suggested addresses.

validationMessage
String

Validation error message.

Applies to