From 5bc477b4d8ca69a1d80abac54420b36601f96ec4 Mon Sep 17 00:00:00 2001 From: allynsweet Date: Wed, 31 Aug 2022 15:53:31 -0400 Subject: [PATCH] fix(prefixes): add pyr_ prefix to Refund object --- src/ids.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ids.rs b/src/ids.rs index 3d133ca2d..892a25474 100644 --- a/src/ids.rs +++ b/src/ids.rs @@ -542,7 +542,7 @@ def_id!(ProductId: String); // N.B. A product id can be user-provided so can be def_id!(PromotionCodeId, "promo_"); // N.B. A product id can be user-provided so can be any arbitrary string def_id!(QuoteId, "qt_"); def_id!(RecipientId: String); // FIXME: This doesn't seem to be documented yet -def_id!(RefundId, "re_"); +def_id!(RefundId, "re_" | "pyr_"); def_id!(ReserveTransactionId, "rtx"); def_id!(ReviewId, "prv_"); def_id!(ScheduledQueryRunId, "sqr_");