Partager via


ValidateResponseError Class

  • java.lang.Object
    • com.azure.resourcemanager.appservice.models.ValidateResponseError

Implements

public final class ValidateResponseError
implements JsonSerializable<ValidateResponseError>

Error details for when validation fails.

Constructor Summary

Constructor Description
ValidateResponseError()

Creates an instance of ValidateResponseError class.

Method Summary

Modifier and Type Method and Description
String code()

Get the code property: Validation error code.

static ValidateResponseError fromJson(JsonReader jsonReader)

Reads an instance of ValidateResponseError from the JsonReader.

String message()

Get the message property: Validation error message.

JsonWriter toJson(JsonWriter jsonWriter)
void validate()

Validates the instance.

ValidateResponseError withCode(String code)

Set the code property: Validation error code.

ValidateResponseError withMessage(String message)

Set the message property: Validation error message.

Methods inherited from java.lang.Object

Constructor Details

ValidateResponseError

public ValidateResponseError()

Creates an instance of ValidateResponseError class.

Method Details

code

public String code()

Get the code property: Validation error code.

Returns:

the code value.

fromJson

public static ValidateResponseError fromJson(JsonReader jsonReader)

Reads an instance of ValidateResponseError from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

An instance of ValidateResponseError if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.

Throws:

IOException

- If an error occurs while reading the ValidateResponseError.

message

public String message()

Get the message property: Validation error message.

Returns:

the message value.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

validate

public void validate()

Validates the instance.

withCode

public ValidateResponseError withCode(String code)

Set the code property: Validation error code.

Parameters:

code - the code value to set.

Returns:

the ValidateResponseError object itself.

withMessage

public ValidateResponseError withMessage(String message)

Set the message property: Validation error message.

Parameters:

message - the message value to set.

Returns:

the ValidateResponseError object itself.

Applies to