package smsc type Response struct { Error string `json:"error"` ErrorCode int `json:"error_code"` } func (s *Response) IsError() bool { return s.Error == "" }