Class AccountBuyerAPIResponse
java.lang.Object
com.skava.core.validation.OutputModel
com.skava.core.ResponseModel
com.skava.accounts.model.exchange.response.AccountBuyerAPIResponse
- All Implemented Interfaces:
Serializable
public class AccountBuyerAPIResponse
extends com.skava.core.ResponseModel
The Class AccountBuyerAPIResponse holds the account buyer 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
ConstructorsConstructorDescriptionAccountBuyerAPIResponse
(String codeSuccess, String msgSuccess, AccountBuyer accountBuyerResponse) Instantiates a new AccountBuyerAPIResponse. -
Method Summary
Methods inherited from class com.skava.core.ResponseModel
getResponseCode, getResponseMessage, getTimeStamp, setResponseCode, setResponseMessage, setTimeStamp
-
Constructor Details
-
AccountBuyerAPIResponse
public AccountBuyerAPIResponse(String codeSuccess, String msgSuccess, AccountBuyer accountBuyerResponse) Instantiates a new AccountBuyerAPIResponse.- Parameters:
codeSuccess
- Indicates the code of the response.msgSuccess
- Indicates the message of the response.accountBuyerResponse
- HoldsAccountBuyer
object for creating AccountBuyer API Response.
-