Tag: stripe payments

添加元数据以在客户上进行条带化

我需要为客户添加唯一标识符。 通过条带元数据。 这就是我现在完全完成它的方法但是我只是告诉我用户购买了哪个包。 我试过看这里: 计划条纹 代码在这里: var planType = abonnement.fk_userid != null ? “Business” : “Default”; planService.Create(new StripePlanCreateOptions() { Amount = 99 * 100, Name = abonnement.mdr + ” – (” + planType + “)”, Currency = “EUR”, Interval = “month”, IntervalCount = 6, Id = 1, Metadata = { “Pakkeid:” = abonnement.PriceValueUnikId } } […]