@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
12 lines (11 loc) • 314 B
TypeScript
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;
}