/// <summary>
 /// Initializes a new instance of the <see cref="ConvertToCellsRequest"/> class.
 /// </summary>
 /// <param name="settings">The settings.</param>
 /// <param name="outPath">outPath: path to output document on file storage</param>
 public ConvertToCellsRequest(CellsConversionSettings settings = null, string outPath = null)
 {
     this.Settings = settings;
     this.OutPath  = outPath;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ConvertToCellsStreamRequest"/> class.
 /// </summary>
 /// <param name="settings">The settings.</param>
 public ConvertToCellsStreamRequest(CellsConversionSettings settings = null)
 {
     this.Settings = settings;
 }