DisinheritResponse Data Type

Response containing disinherit information

Properties
name data type description
exclude boolean True if the object is be excluded from multichannelling, false if not
disinheritDefault boolean Indicates whether the object should be disinherited by default in new channels.
disinherit array of number IDs of nodes/channels, in which the object will not be inherited. This will be ignored, if the object is excluded from multichannelling
inheritable array of number IDs of nodes/channels, where this object (actually its master) can be inherited
Properties inherited from GenericResponse
messages array of Message Messages contained in the response (which should be shown to the user)
responseInfo ResponseInfo

Example

{
  "exclude" : true,
  "disinheritDefault" : true,
  "disinherit" : [ 12345, 12345 ],
  "inheritable" : [ 12345, 12345 ],
  "messages" : [ { }, { } ],
  "responseInfo" : {
    "responseCode" : "OK",
    "responseMessage" : "...",
    "property" : "..."
  }
}