UNPKG

@openzeppelin/relayer-sdk

Version:
56 lines (55 loc) 1.19 kB
/** * OpenZeppelin Relayer API * OpenZeppelin Relayer API * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { LogEntry } from './log-entry'; /** * * @export * @interface ApiResponsePluginCallResponseData */ export interface ApiResponsePluginCallResponseData { /** * * @type {string} * @memberof ApiResponsePluginCallResponseData */ 'error': string; /** * * @type {Array<LogEntry>} * @memberof ApiResponsePluginCallResponseData */ 'logs': Array<LogEntry>; /** * * @type {string} * @memberof ApiResponsePluginCallResponseData */ 'message': string; /** * * @type {string} * @memberof ApiResponsePluginCallResponseData */ 'return_value': string; /** * * @type {boolean} * @memberof ApiResponsePluginCallResponseData */ 'success': boolean; /** * * @type {Array<any>} * @memberof ApiResponsePluginCallResponseData */ 'traces': Array<any>; }