ListingEntryInfo

Properties

creation: long;

File creation timestamp

metadata: Map<string,Object>;

File metadata

name: string;

File name

owner: string;

Optional User key. When calling the API, defaults to the current (calling) user’s primary key. For impersonation purposes, the caller may use the key of another user, provided that the proper authorizations have been given by the impersonated user

requestId: string;

User field for traceability of requests. Synchronous SDK APIs use this field for you.

tags: Set[String];

File tags

type: FileType;

File type

url: UploadedFile;

Original upload information

Source

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
33
34
35
36
37
38
39
40
41
42
43
interface ListingEntryInfo {

  /**
   * File creation timestamp
   */
  creation: long;

  /**
   * File metadata
   */
  metadata: Map<string,Object>;

  /**
   * File name
   */
  name: string;

  /**
   * Optional User key. When calling the API, defaults to the current (calling) user's primary key. For impersonation purposes, the caller may use the key of another user, provided that the proper authorizations have been given by the impersonated user
   */
  owner: string;

  /**
   * User field for traceability of requests. Synchronous SDK APIs use this field for you.
   */
  requestId: string;

  /**
   * File tags
   */
  tags: Set[String];

  /**
   * File type
   */
  type: FileType;

  /**
   * Original upload information
   */
  url: UploadedFile;

}