@@ -325,6 +325,83 @@ export class FileDownloadResponse implements Models.FileDownloadResponse {
325
325
return this . originalResponse . version ;
326
326
}
327
327
328
+ /**
329
+ * Attributes set for the file.
330
+ *
331
+ * @readonly
332
+ * @type {(string | undefined) }
333
+ * @memberof FileDownloadResponse
334
+ */
335
+ public get fileAttributes ( ) : string | undefined {
336
+ return this . originalResponse . fileAttributes ;
337
+ }
338
+
339
+ /**
340
+ * Creation time for the file.
341
+ *
342
+ * @readonly
343
+ * @type {(Date | undefined) }
344
+ * @memberof FileDownloadResponse
345
+ */
346
+ public get fileCreationTime ( ) : Date | undefined {
347
+ return this . originalResponse . fileCreationTime ;
348
+ }
349
+
350
+ /**
351
+ * Last write time for the file.
352
+ *
353
+ * @readonly
354
+ * @type {(string | undefined) }
355
+ * @memberof FileDownloadResponse
356
+ */
357
+ public get fileLastWriteTime ( ) : Date | undefined {
358
+ return this . originalResponse . fileLastWriteTime ;
359
+ }
360
+
361
+ /**
362
+ * Change time for the file.
363
+ *
364
+ * @readonly
365
+ * @type {(string | undefined) }
366
+ * @memberof FileDownloadResponse
367
+ */
368
+ public get fileChangeTime ( ) : Date | undefined {
369
+ return this . originalResponse . fileChangeTime ;
370
+ }
371
+
372
+ /**
373
+ * Key of the permission set for the file.
374
+ *
375
+ * @readonly
376
+ * @type {(string | undefined) }
377
+ * @memberof FileDownloadResponse
378
+ */
379
+ public get filePermissionKey ( ) : string | undefined {
380
+ return this . originalResponse . filePermissionKey ;
381
+ }
382
+
383
+ /**
384
+ * The fileId of the file.
385
+ *
386
+ * @readonly
387
+ * @type {(string | undefined) }
388
+ * @memberof FileDownloadResponse
389
+ */
390
+ public get fileId ( ) : string | undefined {
391
+ return this . originalResponse . fileId ;
392
+ }
393
+
394
+ /**
395
+ * The parent fileId of the file.
396
+ *
397
+ * @readonly
398
+ * @type {(string | undefined) }
399
+ * @memberof FileDownloadResponse
400
+ */
401
+ public get fileParentId ( ) : string | undefined {
402
+ return this . originalResponse . fileParentId ;
403
+ }
404
+
328
405
/**
329
406
* The response body as a browser Blob.
330
407
* Always undefined in node.js.
0 commit comments