bayesline.api.UpdateUserGroup#

pydantic model bayesline.api.UpdateUserGroup#

Request model for updating an existing user group.

Show JSON schema
{
   "title": "UpdateUserGroup",
   "description": "Request model for updating an existing user group.",
   "type": "object",
   "properties": {
      "id": {
         "title": "Id",
         "type": "integer"
      },
      "description": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Description"
      },
      "updated_by": {
         "title": "Updated By",
         "type": "string"
      }
   },
   "required": [
      "id",
      "updated_by"
   ]
}

Config:
  • frozen: bool = True

Fields:
  • description (str | None)

  • id (int)

  • updated_by (str)

field id: int [Required]#
field description: str | None = None#
field updated_by: str [Required]#