Class BadRequestResponseType
- java.lang.Object
-
- com.fifa.connectid.sdk.core.api.models.BadRequestResponseType
-
public class BadRequestResponseType extends Object
The BadRequestResponseType model.
-
-
Constructor Summary
Constructors Constructor Description BadRequestResponseType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<DetailsItemType>details()Get the details value.Stringmessage()Get the message value.BadRequestResponseTypewithDetails(List<DetailsItemType> details)Set the details value.BadRequestResponseTypewithMessage(String message)Set the message value.
-
-
-
Method Detail
-
message
public String message()
Get the message value.- Returns:
- the message value
-
withMessage
public BadRequestResponseType withMessage(String message)
Set the message value.- Parameters:
message- the message value to set- Returns:
- the BadRequestResponseType object itself.
-
details
public List<DetailsItemType> details()
Get the details value.- Returns:
- the details value
-
withDetails
public BadRequestResponseType withDetails(List<DetailsItemType> details)
Set the details value.- Parameters:
details- the details value to set- Returns:
- the BadRequestResponseType object itself.
-
-