Class: Io::Flow::V0::Models::B2bInvoiceType
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::B2bInvoiceType
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Class Method Summary collapse
- .ALL ⇒ Object
-
.apply(value) ⇒ Object
Returns the instance of B2bInvoiceType for this value, creating a new instance for an unknown value.
-
.from_string(value) ⇒ Object
Returns the instance of B2bInvoiceType for this value, or nil if not found.
- .invoice ⇒ Object
- .self_bill_invoice ⇒ Object
Instance Method Summary collapse
-
#initialize(value) ⇒ B2bInvoiceType
constructor
A new instance of B2bInvoiceType.
- #to_hash ⇒ Object
Constructor Details
#initialize(value) ⇒ B2bInvoiceType
Returns a new instance of B2bInvoiceType.
15400 15401 15402 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15400 def initialize(value) @value = HttpClient::Preconditions.assert_class('value', value, String) end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
15398 15399 15400 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15398 def value @value end |
Class Method Details
.ALL ⇒ Object
15420 15421 15422 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15420 def B2bInvoiceType.ALL @@all ||= [B2bInvoiceType.self_bill_invoice, B2bInvoiceType.invoice] end |
.apply(value) ⇒ Object
Returns the instance of B2bInvoiceType for this value, creating a new instance for an unknown value
15405 15406 15407 15408 15409 15410 15411 15412 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15405 def B2bInvoiceType.apply(value) if value.instance_of?(B2bInvoiceType) value else HttpClient::Preconditions.assert_class_or_nil('value', value, String) value.nil? ? nil : (from_string(value) || B2bInvoiceType.new(value)) end end |
.from_string(value) ⇒ Object
Returns the instance of B2bInvoiceType for this value, or nil if not found
15415 15416 15417 15418 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15415 def B2bInvoiceType.from_string(value) HttpClient::Preconditions.assert_class('value', value, String) B2bInvoiceType.ALL.find { |v| v.value == value } end |
.invoice ⇒ Object
15428 15429 15430 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15428 def B2bInvoiceType.invoice @@_invoice ||= B2bInvoiceType.new('invoice') end |
.self_bill_invoice ⇒ Object
15424 15425 15426 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15424 def B2bInvoiceType.self_bill_invoice @@_self_bill_invoice ||= B2bInvoiceType.new('self_bill_invoice') end |
Instance Method Details
#to_hash ⇒ Object
15432 15433 15434 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15432 def to_hash value end |