26 lines
380 B
TypeScript
26 lines
380 B
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/* Code generated by ng-openapi-gen DO NOT EDIT. */
|
|
|
|
export interface FileDetails {
|
|
/**
|
|
* File extension
|
|
*/
|
|
ext: string;
|
|
|
|
/**
|
|
* Size of the file in bytes
|
|
*/
|
|
fileSizeInBytes: number;
|
|
|
|
/**
|
|
* Last modified date of the file
|
|
*/
|
|
lastModified: string;
|
|
|
|
/**
|
|
* Complete name for the file
|
|
*/
|
|
name: string;
|
|
}
|