Class: AdvancedBilling::ProformaInvoiceStatus
- Inherits:
-
Object
- Object
- AdvancedBilling::ProformaInvoiceStatus
- Defined in:
- lib/advanced_billing/models/proforma_invoice_status.rb
Overview
Proforma Invoice Status.
Constant Summary collapse
- PROFORMA_INVOICE_STATUS =
[ # TODO: Write general description for DRAFT DRAFT = 'draft'.freeze, # TODO: Write general description for VOIDED VOIDED = 'voided'.freeze, # TODO: Write general description for ARCHIVED ARCHIVED = 'archived'.freeze ].freeze
Class Method Summary collapse
Class Method Details
.validate(value) ⇒ Object
20 21 22 23 24 |
# File 'lib/advanced_billing/models/proforma_invoice_status.rb', line 20 def self.validate(value) return false if value.nil? PROFORMA_INVOICE_STATUS.include?(value) end |