github.com/huaweicloud/golangsdk@v0.0.0-20210831081626-d823fe11ceba/openstack/waf_hw/v1/valuelists/results.go (about) 1 /* 2 Copyright (c) Huawei Technologies Co., Ltd. 2021. All rights reserved. 3 */ 4 5 package valuelists 6 7 // WafValueList reference table detail 8 type WafValueList struct { 9 Id string `json:"id"` 10 Name string `json:"name"` 11 Type string `json:"type"` 12 Description string `json:"description"` 13 CreationTime int64 `json:"timestamp"` 14 Values []string `json:"values"` 15 } 16 17 type ListValueListRst struct { 18 Total int `json:"total"` 19 Items []WafValueList `json:"items"` 20 }