ApiData().GetBehaviorCreatedMinute

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

Description

This method returns the minute that the given Behavior, indicated by the id, was created. 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 creation.

Example Usage (C#)


int minute = _core.ApiData().GetBehaviorCreatedMinute(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 creation.

ApiData()