interface
- class InterfaceDict
Bases:
dict
- name: str
- methods: List[MethodDict]
- desc: str
- class Interface(name: str, methods: List[Method], desc: Optional[str] = None)
Bases:
object
Represents a ABI interface description.
- Parameters
name (string) – name of the interface
methods (list) – list of Method objects
desc (string, optional) – description of the interface
- dictify() InterfaceDict