CategoryAssignedToMotive Data Type

Assignment of a motive to a motive category.

Properties
Name Type Description
id number Resource identifier.
version number Optimistic locking version.
active boolean Whether this assignment is active.
orderIndex number Display order position within the category.
category MotiveCategory The motive category this assignment points to.
rest array of object
Used in
CategoryAssignedToMotive (JSON)
{
  "categoryAssignedToMotive" : {
    "id" : 12345,
    "version" : 12345,
    "active" : true,
    "orderIndex" : 12345,
    "category" : {
      "id" : 12345,
      "version" : 12345,
      "name" : "...",
      "orderIndex" : 12345,
      "active" : true,
      "deleted" : true,
      "rest" : [ { }, { } ]
    },
    "rest" : [ { }, { } ]
  }
}
CategoryAssignedToMotive Data Type

Assignment of a motive to a motive category.

Properties
Name Type Description
active boolean Whether this assignment is active.
category MotiveCategory The motive category this assignment points to.
id int Resource identifier.
link list of atomLink  
orderIndex int Display order position within the category.
version int Optimistic locking version.
Used in
CategoryAssignedToMotive (XML)
<categoryAssignedToMotive>
  <id>...</id>
  <version>...</version>
  <active>...</active>
  <orderIndex>...</orderIndex>
  <category>
    <id>...</id>
    <version>...</version>
    <name>...</name>
    <orderIndex>...</orderIndex>
    <active>...</active>
    <deleted>...</deleted>
    <link href="..." hreflang="..." length="..." rel="..." title="..." type="..." xmlns="http://www.w3.org/2005/Atom"/>
  </category>
  <link href="..." hreflang="..." length="..." rel="..." title="..." type="..." xmlns="http://www.w3.org/2005/Atom"/>
</categoryAssignedToMotive>