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