/** * Dashboard API * Dashboard API documentation * * 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. */ /** * * @export * @interface V7UserOp */ export interface V7UserOp { /** * * @type {string} * @memberof V7UserOp */ sender: string; /** * * @type {string} * @memberof V7UserOp */ nonce: string; /** * * @type {string} * @memberof V7UserOp */ initCode: string; /** * * @type {string} * @memberof V7UserOp */ callData: string; /** * * @type {string} * @memberof V7UserOp */ accountGasLimits: string; /** * * @type {string} * @memberof V7UserOp */ preVerificationGas: string; /** * * @type {string} * @memberof V7UserOp */ gasFees: string; /** * * @type {string} * @memberof V7UserOp */ paymasterAndData: string; /** * * @type {string} * @memberof V7UserOp */ signature: string; } export declare function V7UserOpFromJSON(json: any): V7UserOp; export declare function V7UserOpFromJSONTyped(json: any, ignoreDiscriminator: boolean): V7UserOp; export declare function V7UserOpToJSON(value?: V7UserOp | null): any;