@mediarithmics/plugins-nodejs-sdk
Version:
This is the mediarithmics nodejs to help plugin developers bootstrapping their plugin without having to deal with most of the plugin boilerplate
15 lines (14 loc) • 329 B
TypeScript
import { Value } from "./ValueInterface";
export interface PluginPropertyResponse {
status: string;
data: PluginProperty[];
count: number;
}
export interface PluginProperty {
technical_name: string;
value: Value;
property_type: string;
origin: string;
writable: boolean;
deletable: boolean;
}