ApiData().GetBehaviorLastModifiedMinute

Gets the given Behavior’s last modified date “minute” value.

Description

This method returns the minute that the given Behavior, indicated by the id, was last modified. This value will be between 0 and 59, representing the 60 minutes in any given hour. When combined with the “hour” value, this will give the complete time of day value for the Behavior’s most recent modification.

Example Usage (C#)


int minute = _core.ApiData().GetBehaviorLastModifiedMinute(147);

Parameters

int

id

The integer numeric value or variable representing the unique ID of the Behavior.

Returns

The integer value (1 or 2 decimal) representing the Behavior’s minute of last modification.

ApiData()