Represents a container that encapsulates a hierarchical file system.

interface FileContainer {
    artifactUri: string;
    contentLocation?: string;
    createdBy?: string;
    dateCreated?: Date;
    description?: string;
    id: number;
    itemLocation?: string;
    locatorPath?: string;
    name?: string;
    options?: None;
    scopeIdentifier?: string;
    securityToken?: string;
    signingKeyId?: string;
    size?: number;
}

Properties

artifactUri: string

Uri of the artifact associated with the container.

contentLocation?: string

Download Url for the content of this item.

createdBy?: string

Owner.

dateCreated?: Date

Creation date.

description?: string

Description.

id: number

Id.

itemLocation?: string

Location of the item resource.

locatorPath?: string

ItemStore Locator for this container.

name?: string

Name.

options?: None

Options the container can have.

scopeIdentifier?: string

Project Id.

securityToken?: string

Security token of the artifact associated with the container.

signingKeyId?: string

Identifier of the optional encryption key.

size?: number

Total size of the files in bytes.