Index BlackBerry Workspaces SDK
BlackBerry Workspaces JSON
BulkOperationResult
Show result of bulk operation.
Parameters
Name Type Description

fullSuccess

boolean

Deprecated
Default value: true

problematicItems

List(ItemErrorInfo)

Default value: null

List of problems in bulk operation.

success

SuccessLevel

Default value: FULL

Indicates whether all operations completed successfully.

Possible values: [PARTIAL, NONE, FULL].

transactionUuid

String

Default value: null

In case the server has some tasks to perform , it returns UUID - for the client to query later

Json Format
{
problematicItems: List(
{
itemId: String,
errors: List(
{
errorCode: Integer,
isAggregatedMessage: Boolean,
errorArgs: List(String),
errorMessage: String
})
}),
fullSuccess: Boolean,
success: SuccessLevel,
transactionUuid: String
}