Skip to main content

IdOperation

enum IdOperation : Enum<IdOperation>

Defines what happened to an ObjectId during execution

BCS

The BCS serialized form for this type is defined by the following ABNF:

id-operation =  id-operation-none
=/ id-operation-created
=/ id-operation-deleted

id-operation-none = %d00
id-operation-created = %d01
id-operation-deleted = %d02

Entries

NONENONE
CREATEDCREATED
DELETEDDELETED

Properties

NameSummary
entriesval entries: EnumEntries<IdOperation>
Returns a representation of an immutable list of all enum entries, in the order they're declared.
nameval name: String
ordinalval ordinal: Int
valueval value: UByte

Functions

NameSummary
valueOffun valueOf(value: String): IdOperation
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
valuesfun values(): Array<IdOperation>
Returns an array containing the constants of this enum type, in the order they're declared.

CREATED

CREATED

Properties

NameSummary
nameval name: String
ordinalval ordinal: Int
valueval value: UByte

DELETED

DELETED

Properties

NameSummary
nameval name: String
ordinalval ordinal: Int
valueval value: UByte

NONE

NONE

Properties

NameSummary
nameval name: String
ordinalval ordinal: Int
valueval value: UByte