Class AccountAPIResponse
java.lang.Object
com.skava.core.validation.OutputModel
com.skava.core.ResponseModel
com.skava.accounts.model.exchange.response.AccountAPIResponse
- All Implemented Interfaces:
Serializable
public class AccountAPIResponse
extends com.skava.core.ResponseModel
The Class AccountAPIResponse holds the accounts details as response data which will be sent to controller.
- Author:
- Infosys Equinox
- See Also:
-
Field Summary
Fields inherited from class com.skava.core.ResponseModel
responseCode, responseMessage, timeStamp
-
Constructor Summary
ConstructorsConstructorDescriptionAccountAPIResponse
(String codeSuccess, String msgSuccess, Accounts accountResponse) Instantiates a new collection API response. -
Method Summary
Methods inherited from class com.skava.core.ResponseModel
getResponseCode, getResponseMessage, getTimeStamp, setResponseCode, setResponseMessage, setTimeStamp
-
Constructor Details
-
AccountAPIResponse
Instantiates a new collection API response.- Parameters:
codeSuccess
- Indicates the code of the response.msgSuccess
- Indicates the message of the response.accountResponse
- HoldsAccounts
object for creating Account API Response.
-