syntax = "proto3";

message UserGroupUpdateRequest {
   string showName = 1;
   string description = 2;
   int32 pageId = 4;
   int32 parentGroupId = 5;
   bool enableMembercard = 6;
   string membercardCancellationDescription = 7;
   optional bool enforceTwoFactorAuth = 8;
   optional int32 memberLimit = 9;
   optional bool isWorkspace = 10;
   optional string icon = 11;
   optional int32 workspacePageId = 12;
   optional bool requiresConfirmation = 14;
}
