Create Model
frauddetector_create_model | R Documentation |
Creates a model using the specified model type¶
Description¶
Creates a model using the specified model type.
Usage¶
frauddetector_create_model(modelId, modelType, description,
eventTypeName, tags)
Arguments¶
modelId |
[required] The model ID. |
modelType |
[required] The model type. |
description |
The model description. |
eventTypeName |
[required] The name of the event type. |
tags |
A collection of key and value pairs. |
Value¶
An empty list.
Request syntax¶
svc$create_model(
modelId = "string",
modelType = "ONLINE_FRAUD_INSIGHTS"|"TRANSACTION_FRAUD_INSIGHTS"|"ACCOUNT_TAKEOVER_INSIGHTS",
description = "string",
eventTypeName = "string",
tags = list(
list(
key = "string",
value = "string"
)
)
)