ApiPurchaseStatus.cs 364 B

12345678
  1. namespace Domain.Entities.Developers.ValueObject;
  2. public enum ApiPurchaseStatus
  3. {
  4. Pending = 1, // 보류 — 지갑 미적립, ConfirmDueAt 도래 시 확정 배치가 적립
  5. Confirmed = 2, // 확정 — 채널주 지갑(StoreRevenue) 적립 완료
  6. Canceled = 3 // 취소 — 보류 중 취소(지갑 무관) 또는 확정 후 취소(회수)
  7. }