Class: ActivityType
Represents the identifier used by a activity author to define the activity. Typically, the name of a function. This is sometimes referred to as the activity's "name"
Implements
Constructors
constructor
• new ActivityType(properties?): ActivityType
Constructs a new ActivityType.
Parameters
| Name | Type | Description |
|---|---|---|
properties? | IActivityType | Properties to set |
Returns
Properties
name
• name: string
ActivityType name.
Implementation of
Methods
toJSON
▸ toJSON(): Object
Converts this ActivityType to JSON.
Returns
Object
JSON object
create
▸ create(properties?): ActivityType
Creates a new ActivityType instance using the specified properties.
Parameters
| Name | Type | Description |
|---|---|---|
properties? | IActivityType | Properties to set |
Returns
ActivityType instance
decode
▸ decode(reader, length?): ActivityType
Decodes an ActivityType message from the specified reader or buffer.
Parameters
| Name | Type | Description |
|---|---|---|
reader | Uint8Array | Reader | Reader or buffer to decode from |
length? | number | Message length if known beforehand |
Returns
ActivityType
Throws
If the payload is not a reader or valid buffer
Throws
If required fields are missing
decodeDelimited
▸ decodeDelimited(reader): ActivityType
Decodes an ActivityType message from the specified reader or buffer, length delimited.
Parameters
| Name | Type | Description |
|---|---|---|
reader | Uint8Array | Reader | Reader or buffer to decode from |