/** *
A metadata entry for a folder or object.
*/ export interface _Item { /** *The name of the item.
*/ Name?: string; /** *The item type (folder or object).
*/ Type?: "OBJECT" | "FOLDER" | string; /** *The ETag that represents a unique instance of the item.
*/ ETag?: string; /** *The date and time that the item was last modified.
*/ LastModified?: Date | string | number; /** *The content type of the item.
*/ ContentType?: string; /** *The length of the item in bytes.
*/ ContentLength?: number; } export interface _UnmarshalledItem extends _Item { /** *The date and time that the item was last modified.
*/ LastModified?: Date; }