@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
14 lines (13 loc) • 611 B
TypeScript
import type { SimulationRunStatus, SimulationScenarioType } from '../../enums/index.js';
import type { IEventName } from '../../notifications/index.js';
import type { ISimulationRunResponse } from '../../types/index.js';
import { SimulationRunEvent } from '../index.js';
export declare class SimulationRun {
readonly id: string;
readonly status: SimulationRunStatus;
readonly createdAt: string;
readonly updatedAt: string;
readonly type: IEventName | SimulationScenarioType;
readonly events: SimulationRunEvent[] | null;
constructor(simulationRunResponse: ISimulationRunResponse);
}