Class MethodArgument
Inherited Members
Namespace: AVM.ClientGenerator.ABI.ARC56
Assembly: Algorand.dll
Syntax
public class MethodArgument
Properties
| Edit this page View SourceDefaultValue
The default value that clients should use.
Declaration
[JsonProperty("defaultValue")]
public DefaultValue DefaultValue { get; set; }
Property Value
| Type | Description |
|---|---|
| DefaultValue |
Description
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 |