package com.hpay.hpay_mobile_api.DTO;

import java.util.HashMap;

public class SuccessResponse {

    private String message;
    private int statusCode;
    private  HashMap<String, Object> response;

    public SuccessResponse(String message, int statusCode, HashMap<String, Object> response) {
        this.message = message;
        this.statusCode = statusCode;
        this.response= response;
    }

    // Getters and Setters
    public String getMessage() {
        return message;
    }

    public void setMessage(String message) {
        this.message = message;
    }

    public int getStatusCode() {
        return statusCode;
    }

    public void setStatusCode(int statusCode) {
        this.statusCode = statusCode;
    }

    public HashMap<String, Object>  getResponse() {
        return  this.response;
    }

    public void setResponse( HashMap<String, Object> reponse) {
        this.response = reponse;
    }
}
