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