/** * 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 SimulateUserOpRequest */ export interface SimulateUserOpRequest { /** * * @type {string} * @memberof SimulateUserOpRequest */ chainId: string; /** * User operation object to simulate * @type {object} * @memberof SimulateUserOpRequest */ operation: object; /** * Valid blockchain wallet address, must be an alphanumeric string (underscores allowed for chains like Midnight) * @type {string} * @memberof SimulateUserOpRequest */ entryPoint: string; /** * * @type {string} * @memberof SimulateUserOpRequest */ domain?: string; /** * * @type {string} * @memberof SimulateUserOpRequest */ value: string; } export declare function SimulateUserOpRequestFromJSON(json: any): SimulateUserOpRequest; export declare function SimulateUserOpRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SimulateUserOpRequest; export declare function SimulateUserOpRequestToJSON(value?: SimulateUserOpRequest | null): any;