Properties
Name | Access | Type | Description |
---|---|---|---|
DateCreated | Read, Write | DateTime | Date Created |
Enabled | Read, Write | Boolean | Enabled |
Errors | Read | IList of Error | Errors |
Id | Read, Write | Nullable of Int32 | Id |
Name | Read, Write | String | Name of the API Key |
SecretKey | Read, Write | String | Secret value for API Key |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $apiKey.HasErrors())
JavaScript
var booleanResponse = apiKey.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $apiKey.HasWarnings())
JavaScript
var booleanResponse = apiKey.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $apiKey.HasWarningsOrErrors())
JavaScript
var booleanResponse = apiKey.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$apiKey.ThrowErrors()
JavaScript
apiKey.ThrowErrors();