type Response struct {
Status int `json:"status,omitempty" xml:"status,omitempty"`
Message string `json:"message,omitempty" xml:"message,omitempty"`
Data interface{} `json:"data,omitempty" xml:"data,omitempty"`
}
Response is commonly used to return JSON format response.