/**
 * OpenZeppelin Relayer API
 * OpenZeppelin Relayer API
 *
 * The version of the OpenAPI document: 1.3.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 { JsonRpcId } from './json-rpc-id';
/**
 * JSON-RPC 2.0 Request structure.  Represents a JSON-RPC request with proper ID handling: - `Some(JsonRpcId)` = request with ID - `None` = explicit null ID or notification
 * @export
 * @interface JsonRpcRequestNetworkRpcRequest
 */
export interface JsonRpcRequestNetworkRpcRequest {
    /**
     *
     * @type {string}
     * @memberof JsonRpcRequestNetworkRpcRequest
     */
    'method': string;
    /**
     *
     * @type {any}
     * @memberof JsonRpcRequestNetworkRpcRequest
     */
    'params': any;
    /**
     *
     * @type {JsonRpcId}
     * @memberof JsonRpcRequestNetworkRpcRequest
     */
    'id'?: JsonRpcId | null;
    /**
     *
     * @type {string}
     * @memberof JsonRpcRequestNetworkRpcRequest
     */
    'jsonrpc': string;
}
