/// <summary>
 /// Create a new UserEntryEntity object.
 /// </summary>
 /// <param name="id">Initial value of Id.</param>
 /// <param name="type">Initial value of Type.</param>
 /// <param name="key">Initial value of Key.</param>
 /// <param name="restrictedAccess">Initial value of RestrictedAccess.</param>
 public static UserEntryEntity CreateUserEntryEntity(int id, string type, string key, bool restrictedAccess)
 {
     UserEntryEntity userEntryEntity = new UserEntryEntity();
     userEntryEntity.Id = id;
     userEntryEntity.Type = type;
     userEntryEntity.Key = key;
     userEntryEntity.RestrictedAccess = restrictedAccess;
     return userEntryEntity;
 }
 /// <summary>
 /// There are no comments for UserEntryEntitySet in the schema.
 /// </summary>
 public void AddToUserEntryEntitySet(UserEntryEntity userEntryEntity)
 {
     base.AddObject("UserEntryEntitySet", userEntryEntity);
 }