Пример #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AppendXlsxRowRequest" /> class.
 /// </summary>
 /// <param name="inputFileBytes">Optional: Bytes of the input file to operate on.</param>
 /// <param name="inputFileUrl">Optional: URL of a file to operate on as input.  This can be a public URL, or you can also use the begin-editing API to upload a document and pass in the secure URL result from that operation as the URL here (this URL is not public)..</param>
 /// <param name="worksheetToUpdate">Optional; Worksheet (tab) within the spreadsheet to get the specific row from; leave blank to default to the first worksheet.</param>
 /// <param name="row">Required; Row to be appended to the worksheet..</param>
 public AppendXlsxRowRequest(byte[] inputFileBytes = default(byte[]), string inputFileUrl = default(string), XlsxWorksheet worksheetToUpdate = default(XlsxWorksheet), XlsxSpreadsheetRow row = default(XlsxSpreadsheetRow))
 {
     this.InputFileBytes    = inputFileBytes;
     this.InputFileUrl      = inputFileUrl;
     this.WorksheetToUpdate = worksheetToUpdate;
     this.Row = row;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GetXlsxSpecificRowResponse" /> class.
 /// </summary>
 /// <param name="successful">True if successful, false otherwise.</param>
 /// <param name="row">Spreadsheet Row from the Excel XLSX document.</param>
 public GetXlsxSpecificRowResponse(bool?successful = default(bool?), XlsxSpreadsheetRow row = default(XlsxSpreadsheetRow))
 {
     this.Successful = successful;
     this.Row        = row;
 }