public static Models.UserDefinedFunctionCreate ToUserDefinedFunctionCreate(this UserDefinedFunctionDescription description, Guid spaceId, IEnumerable <string> matcherIds)
 => new Models.UserDefinedFunctionCreate()
 {
     Name     = description.name,
     SpaceId  = spaceId.ToString(),
     Matchers = matcherIds,
 };
 public static Models.UserDefinedFunction ToUserDefinedFunction(this UserDefinedFunctionDescription description, string Id, Guid spaceId, IEnumerable <Models.Matcher> matchers)
 => new Models.UserDefinedFunction()
 {
     Id       = Id,
     Name     = description.name,
     SpaceId  = spaceId.ToString(),
     Matchers = matchers,
 };