gitee.com/openeuler/go-gitee@v0.0.0-20220530104019-3af895bc380c/gitee/model_group_member.go (about)

     1  /*
     2   * 码云 Open API
     3   *
     4   * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
     5   *
     6   * API version: 5.3.2
     7   * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
     8   */
     9  
    10  package gitee
    11  
    12  // 增加或更新授权用户所管理组织的成员
    13  type GroupMember struct {
    14  	Url             string `json:"url,omitempty"`
    15  	Active          string `json:"active,omitempty"`
    16  	Remark          string `json:"remark,omitempty"`
    17  	Role            string `json:"role,omitempty"`
    18  	OrganizationUrl string `json:"organization_url,omitempty"`
    19  	Organization    *Group `json:"organization,omitempty"`
    20  	User            string `json:"user,omitempty"`
    21  }