Skip to main content

CapabilitiesEnum

This lets us know what capabilites in relation to ml/ cloud infrastructure you are opting into.

Properties

NameType

Example

import { CapabilitiesEnum } from '@pieces.app/pieces-os-client'

// TODO: Update the object below with actual values
const example: CapabilitiesEnum = {
}

console.log(example)

// Convert the instance to a JSON string
const exampleJSON: string = JSON.stringify(example)
console.log(exampleJSON)

// Parse the JSON string back to an object
const exampleParsed = JSON.parse(exampleJSON) as CapabilitiesEnum
console.log(exampleParsed)