UNPKG

@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

14 lines (11 loc) 302 B
import { DataResponse } from '../common/Response'; export type AdLayoutVersionResponse = DataResponse<AdLayoutVersion>; export interface AdLayoutVersion { id: string; version_id: string; creation_date: number; filename: string; template: string; ad_layout_id: string; status: string; }