/** * 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 V6UserOp */ export interface V6UserOp { /** * * @type {string} * @memberof V6UserOp */ sender: string; /** * * @type {string} * @memberof V6UserOp */ nonce: string; /** * * @type {string} * @memberof V6UserOp */ initCode: string; /** * * @type {string} * @memberof V6UserOp */ callData: string; /** * * @type {string} * @memberof V6UserOp */ callGasLimit: string; /** * * @type {string} * @memberof V6UserOp */ verificationGasLimit: string; /** * * @type {string} * @memberof V6UserOp */ preVerificationGas: string; /** * * @type {string} * @memberof V6UserOp */ maxFeePerGas: string; /** * * @type {string} * @memberof V6UserOp */ maxPriorityFeePerGas: string; /** * * @type {string} * @memberof V6UserOp */ paymasterAndData: string; } export declare function V6UserOpFromJSON(json: any): V6UserOp; export declare function V6UserOpFromJSONTyped(json: any, ignoreDiscriminator: boolean): V6UserOp; export declare function V6UserOpToJSON(value?: V6UserOp | null): any;