Aptos · Schema

MoveFunctionGenericTypeParam

Move function generic type param

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

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

JSON Schema

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