/// <summary>
 /// Create a new ConversationAuthor object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="storeId">Initial value of the StoreId property.</param>
 /// <param name="displayName">Initial value of the DisplayName property.</param>
 /// <param name="bio">Initial value of the Bio property.</param>
 /// <param name="authenticationType">Initial value of the AuthenticationType property.</param>
 /// <param name="authenticationKey">Initial value of the AuthenticationKey property.</param>
 /// <param name="accessLevel">Initial value of the AccessLevel property.</param>
 /// <param name="verified">Initial value of the Verified property.</param>
 public static ConversationAuthor CreateConversationAuthor(global::System.Int64 id, global::System.Int64 storeId, global::System.String displayName, global::System.String bio, global::System.Int32 authenticationType, global::System.String authenticationKey, global::System.Int32 accessLevel, global::System.Boolean verified)
 {
     ConversationAuthor conversationAuthor = new ConversationAuthor();
     conversationAuthor.Id = id;
     conversationAuthor.StoreId = storeId;
     conversationAuthor.DisplayName = displayName;
     conversationAuthor.Bio = bio;
     conversationAuthor.AuthenticationType = authenticationType;
     conversationAuthor.AuthenticationKey = authenticationKey;
     conversationAuthor.AccessLevel = accessLevel;
     conversationAuthor.Verified = verified;
     return conversationAuthor;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the ConversationAuthors EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToConversationAuthors(ConversationAuthor conversationAuthor)
 {
     base.AddObject("ConversationAuthors", conversationAuthor);
 }