Class EventArgument
The arguments of the event, in order
Inherited Members
Namespace: AVM.ClientGenerator.ABI.ARC56
Assembly: Algorand.dll
Syntax
public class EventArgument
Properties
| Edit this page View SourceDescription
Optional, user-friendly description for the argument
Declaration
[JsonProperty("desc")]
public string Description { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Name
Optional, user-friendly name for the argument
Declaration
[JsonProperty("name")]
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Struct
If the type is a struct, the name of the struct StructName
Declaration
[JsonProperty("struct")]
public string Struct { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Type
The type of the argument. The struct field should also be checked to determine if this arg is a struct.
ABIType
Declaration
[JsonProperty("type")]
public string Type { get; set; }
Property Value
| Type | Description |
|---|---|
| string |