github.com/dim13/unifi@v0.0.0-20230308161331-9b04946f5e93/usergroup.go (about)

     1  // Copyright (c) 2014 The unifi Authors. All rights reserved.
     2  // Use of this source code is governed by ISC-style license
     3  // that can be found in the LICENSE file.
     4  
     5  package unifi
     6  
     7  type UserGroup struct {
     8  	AttrHiddenID    string `json:"attr_hidden_id"`
     9  	AttrNoDelete    bool   `json:"attr_no_delete"`
    10  	DownRateEnabled bool   `json:"downrate_enabled"`
    11  	Name            string
    12  	QosRateMaxDown  int  `json:"qos_rate_max_down"`
    13  	QosRateMaxUp    int  `json:"qos_rate_max_up"`
    14  	UpRateEnabled   bool `json:"uprate_enabled"`
    15  }