Package com.skava.model.responses
Class UserConsentResponse
java.lang.Object
com.skava.core.validation.OutputModel
com.skava.core.ResponseModel
com.skava.model.responses.UserConsentResponse
- All Implemented Interfaces:
Serializable
public class UserConsentResponse
extends com.skava.core.ResponseModel
This class defines the User Consent model holds the list of user consent details.
- Author:
- Infosys Equinox
- See Also:
-
Field Summary
Fields inherited from class com.skava.core.ResponseModel
responseCode, responseMessage, timeStamp
-
Constructor Summary
ConstructorsConstructorDescriptionUserConsentResponse
(String codeSuccess, String msgSuccess, List<UserConsent> userConsents) Constructs a user consent response for the given parameters. -
Method Summary
Methods inherited from class com.skava.core.ResponseModel
getResponseCode, getResponseMessage, getTimeStamp, setResponseCode, setResponseMessage, setTimeStamp
-
Constructor Details
-
UserConsentResponse
Constructs a user consent response for the given parameters.- Parameters:
codeSuccess
- Indicates the response code.msgSuccess
- Indicates the message of the response.userConsents
- Holds the list ofUserConsent
object.
-