Skip to content

Commit

Permalink
fix(prefixes): add pyr_ prefix to Refund object
Browse files Browse the repository at this point in the history
  • Loading branch information
allynsweet committed Aug 31, 2022
1 parent 5e65c2e commit 5bc477b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ids.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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_");
Expand Down

0 comments on commit 5bc477b

Please sign in to comment.