namespace RudderSdk.Core; /// /// Builders for the quest metric strings known to the platform. Purchase /// metrics are reported automatically by the shop purchase fan-out; any other /// metric is a custom string reported via /// . /// public static class QuestMetrics { /// Metric for purchasing a store offer; auto-reported on purchase. public static string PurchaseOffer(string offerId) => $"purchase.offer:{offerId}"; /// Metric for purchasing a catalog item; auto-reported on purchase. public static string PurchaseItem(string itemId) => $"purchase.item:{itemId}"; }