interface ArtifactResource {
    _links?: any;
    data?: string;
    downloadUrl?: string;
    properties?: { [key: string]: string };
    type?: string;
    url?: string;
}

Properties

_links?: any
data?: string

Type-specific data about the artifact.

downloadUrl?: string

A link to download the resource.

properties?: { [key: string]: string }

Type-specific properties of the artifact.

type?: string

The type of the resource: File container, version control folder, UNC path, etc.

url?: string

The full http link to the resource.