PartType Data Type

Properties
name data type constraints description
name string   The name of the part type
id number required int Get the id of the part type
description string   Get the description of the part type
auto boolean required boolean The auto flag
javaClass string   Get the java class (implementation) of the part type
deprecated boolean required boolean The deprecation flag

Example

{
  "name" : "...",
  "id" : 12345,
  "description" : "...",
  "auto" : true,
  "javaClass" : "...",
  "deprecated" : true
}