api/response_feature_view.go (8 lines of code) (raw):
package api
type ListFeatureViewsResponse struct {
TotalCount int `json:"total_count"`
FeatureViews []*FeatureView `json:"feature_views"`
}
type GetFeatureViewResponse struct {
FeatureView *FeatureView
}