/// <summary>
 /// Initializes a new instance of the <see cref="V2ConversationMessageTypingEventForWorkflowTopicConversationButtonComponent" /> class.
 /// </summary>
 /// <param name="Title">Title.</param>
 /// <param name="Actions">Actions.</param>
 public V2ConversationMessageTypingEventForWorkflowTopicConversationButtonComponent(string Title = null, V2ConversationMessageTypingEventForWorkflowTopicConversationContentActions Actions = null)
 {
     this.Title   = Title;
     this.Actions = Actions;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="V2ConversationMessageTypingEventForWorkflowTopicConversationContentGeneric" /> class.
 /// </summary>
 /// <param name="Title">Title.</param>
 /// <param name="Description">Description.</param>
 /// <param name="Image">Image.</param>
 /// <param name="Video">Video.</param>
 /// <param name="Actions">Actions.</param>
 /// <param name="Components">Components.</param>
 public V2ConversationMessageTypingEventForWorkflowTopicConversationContentGeneric(string Title = null, string Description = null, string Image = null, string Video = null, V2ConversationMessageTypingEventForWorkflowTopicConversationContentActions Actions = null, List <V2ConversationMessageTypingEventForWorkflowTopicConversationButtonComponent> Components = null)
 {
     this.Title       = Title;
     this.Description = Description;
     this.Image       = Image;
     this.Video       = Video;
     this.Actions     = Actions;
     this.Components  = Components;
 }