/// <summary>Static getter for Content</summary>
 public static string GetContent(ICaptionedImagesContent that)
 {
     return(that.GetPropertyValue <string>("content"));
 }
 /// <summary>Static getter for Images</summary>
 public static IEnumerable <IPublishedContent> GetImages(ICaptionedImagesContent that)
 {
     return(that.GetPropertyValue <IEnumerable <IPublishedContent> >("images"));
 }
 /// <summary>Static getter for Title</summary>
 public static string GetTitle(ICaptionedImagesContent that)
 {
     return(that.GetPropertyValue <string>("title"));
 }