UNPKG

@openzeppelin/relayer-sdk

Version:
45 lines (44 loc) 1.09 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 { ApiResponsePluginCallResponseData } from './api-response-plugin-call-response-data'; import type { PaginationMeta } from './pagination-meta'; /** * * @export * @interface ApiResponsePluginCallResponse */ export interface ApiResponsePluginCallResponse { /** * * @type {ApiResponsePluginCallResponseData} * @memberof ApiResponsePluginCallResponse */ 'data'?: ApiResponsePluginCallResponseData; /** * * @type {string} * @memberof ApiResponsePluginCallResponse */ 'error'?: string; /** * * @type {PaginationMeta} * @memberof ApiResponsePluginCallResponse */ 'pagination'?: PaginationMeta; /** * * @type {boolean} * @memberof ApiResponsePluginCallResponse */ 'success': boolean; }