StateTransitionBasic
Basic state transition info (for normal clients).
| Name | Description | Type | 
|---|---|---|
id | State transition ID. | number | 
name | The name of the state transition. | string | 
from_state_id | From state ID. | number | 
to_state_id | To state ID. | number | 
can_current_user_select | Is the transition selectable in UI from the user's point of view? Non-selectable transition is dimmed. | boolean | 
are_state_transition_permissions_object_specific | Specifies if the selectable flag is affected by pseudo users. If true, the selectable flag can be trusted only if the available state transitions are requested for a specific objver. | boolean | 
Example
{
  "id": 0,
  "name": "<!< The name of the state transition.>",
  "from_state_id": 0,
  "to_state_id": 0,
  "can_current_user_select": false,
  "are_state_transition_permissions_object_specific": false
}