@paddle/paddle-node-sdk
Version:
A Node.js SDK that you can use to integrate Paddle Billing with applications written in server-side JavaScript.
16 lines (15 loc) • 767 B
TypeScript
import type { SimulationRunEventStatus, SimulationScenarioType } from '../../enums/index.js';
import type { IEventName } from '../../notifications/index.js';
import { type ISimulationRunEventResponse } from '../../types/index.js';
import { SimulationEventRequest, SimulationEventResponse } from '../shared/index.js';
export declare class SimulationRunEvent {
readonly id: string;
readonly status: SimulationRunEventStatus;
readonly eventType: IEventName | SimulationScenarioType;
readonly payload: any;
readonly request: SimulationEventRequest | null;
readonly response: SimulationEventResponse | null;
readonly createdAt: string;
readonly updatedAt: string;
constructor(simulationRunEventResponse: ISimulationRunEventResponse);
}