Aptos · Schema

MoveStructGenericTypeParam

Move generic type param

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

Name Type Description
constraints array Move abilities tied to the generic type param and associated with the type that uses it
View JSON Schema on GitHub

JSON Schema

MoveStructGenericTypeParam.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/MoveStructGenericTypeParam.json",
  "title": "MoveStructGenericTypeParam",
  "type": "object",
  "description": "Move generic type param",
  "required": [
    "constraints"
  ],
  "properties": {
    "constraints": {
      "type": "array",
      "description": "Move abilities tied to the generic type param and associated with the type that uses it",
      "items": {
        "$ref": "#/components/schemas/MoveAbility"
      }
    }
  }
}