StructTag

@Serializable
data class StructTag(val address: String, val module: String, val name: String, val typeParams: List<TypeTag> = emptyList())

Represents the fully-qualified identifier of a Move struct.

Parameters

address

The address of the package where the struct is defined.

module

The name of the module where the struct is defined.

name

The name of the struct.

typeParams

A list of TypeTags for any generic type parameters.

Constructors

Link copied to clipboard
constructor(address: String, module: String, name: String, typeParams: List<TypeTag> = emptyList())

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open override fun toString(): String