@braze/web-sdk
Version:
Braze SDK for web sites and other JS platforms.
26 lines (25 loc) • 414 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,
n.sk || null,
);
}
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,
n.stable_key || null,
);
}