@braze/web-sdk
Version:
Braze SDK for web sites and other JS platforms.
16 lines (15 loc) • 337 B
JavaScript
import Banner from "./banner.js";
export function newBannerFromSerializedValue(n) {
return new Banner(n.id, n.pid, n.html, n.its, n.ic, n.eat, n.pr);
}
export function newBannerFromJson(n) {
return new Banner(
n.id,
n.placement_id,
n.html,
n.is_test_send,
n.is_control,
n.expires_at,
n.properties,
);
}