Class MethodReturn
Information about the method's return value
Inherited Members
Namespace: AVM.ClientGenerator.ABI.ARC56
Assembly: Algorand.dll
Syntax
public class MethodReturn
Properties
| Edit this page View SourceDescription
Optional, user-friendly description for the return value
Declaration
[JsonProperty("desc")]
public string Description { 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 return value, or "void" to indicate no return value. The struct field should also be checked to determine if this return value is a struct.
ABIType
Declaration
[JsonProperty("type")]
public string Type { get; set; }
Property Value
| Type | Description |
|---|---|
| string |