UNPKG

@datadog/datadog-api-client

Version:
50 lines 1.09 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CycloneDXComponent = void 0; /** * A software component identified during scanning. */ class CycloneDXComponent { constructor() { } /** * @ignore */ static getAttributeTypeMap() { return CycloneDXComponent.attributeTypeMap; } } exports.CycloneDXComponent = CycloneDXComponent; /** * @ignore */ CycloneDXComponent.attributeTypeMap = { bomRef: { baseName: "bom-ref", type: "string", required: true, }, name: { baseName: "name", type: "string", required: true, }, purl: { baseName: "purl", type: "string", }, type: { baseName: "type", type: "CycloneDXComponentType", required: true, }, version: { baseName: "version", type: "string", required: true, }, additionalProperties: { baseName: "additionalProperties", type: "{ [key: string]: any; }", }, }; //# sourceMappingURL=CycloneDXComponent.js.map