create

Json
create
(
T
)
(
T t
)

Examples

import std.conv: to;
import konnexengine.product.blueprint: Price;

auto p = Price("gbp", 99999, "prod_K7Cw4D36hz3OnZ");
auto price = create!Price(p);

logInfo(price.to!string);

Meta