Information about a single named JSON function parameter.

interface AbiJsonParameter {
    name: string;
    type_schema: Schema;
}

Properties

Properties

name: string

Parameter name (e.g. p1 in fn foo(p1: u32) {}).

type_schema: Schema

JSON Subschema that represents this type (can be an inline primitive, a reference to the root schema and a few other corner-case things).