forked from Aspose-3D-Cloud/aspose-3d-cloud-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile_version.go
32 lines (29 loc) · 871 Bytes
/
file_version.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
* Aspose.3D Cloud API Reference
*
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* API version: 3.0
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package aspose3dcloud
import (
"time"
)
// File Version
type FileVersion struct {
// File or folder name.
Name string `json:"Name,omitempty"`
// True if it is a folder.
IsFolder bool `json:"IsFolder"`
// File or folder last modified DateTime.
ModifiedDate time.Time `json:"ModifiedDate,omitempty"`
// File or folder size.
Size int64 `json:"Size"`
// File or folder path.
Path string `json:"Path,omitempty"`
// File Version ID.
VersionId string `json:"VersionId,omitempty"`
// Specifies whether the file is (true) or is not (false) the latest version of an file.
IsLatest bool `json:"IsLatest"`
}