Summary
Gets the values of keys in an object.
Description
Returns an array of a given object's own enumerable property values, in the same order as that provided by a for...in loop (the difference being that a for-in loop enumerates properties in the prototype chain as well).
Route
No Northbound API Available
Roles
Parameters
            DetailsExampleSchema
          
          | Name | Type | Required | Description | 
|---|---|---|---|
| obj | object | yes | The object whose enumerable own property values are to be returned | 
Return
            DetailsExampleSchema
          
          | Name | Type | Description | 
|---|---|---|
| values | array | An array containing the given object's own enumerable property values |