class Eddy::TransactionSets::TS810::TS

### Transaction Set Summary:

Constants

FUNCTIONAL_GROUP
ID
NAME

Public Class Methods

new(store) click to toggle source

@param store [Eddy::Data::Store] @return [void]

Calls superclass method Eddy::Models::TransactionSet::new
# File lib/definitions/transaction_sets/manual/810/810.rb, line 18
def initialize(store)
  @big = Eddy::Segments::BIG.new(store)
  @ref = Eddy::Segments::REF.new(store)
  @l_n1 = Eddy::TransactionSets::TS810::Loops::N1::Base.new(store)
  @dtm = Eddy::Segments::DTM.new(store)
  @l_it1 = Eddy::TransactionSets::TS810::Loops::IT1::Base.new(store)
  @tds = Eddy::Segments::TDS.new(store)
  @cad = Eddy::Segments::CAD.new(store)
  @l_sac = Eddy::TransactionSets::TS810::Loops::SAC::Base.new(store)
  @ctt = Eddy::Segments::CTT.new(store)
  super(
    store,
    @big,
    @ref,
    @l_n1,
    @dtm,
    @l_it1,
    @tds,
    @cad,
    @l_sac,
    @ctt,
  )
end

Public Instance Methods

BIG() { |big| ... } click to toggle source

(see Eddy::Segments::BIG)

@yieldparam [Eddy::Segments::BIG] @return [Eddy::Segments::BIG]

# File lib/definitions/transaction_sets/manual/810/810.rb, line 46
def BIG()
  yield(@big) if block_given?
  return @big
end
CAD() { |cad| ... } click to toggle source

(see Eddy::Segments::CAD)

@yieldparam [Eddy::Segments::CAD] @return [Eddy::Segments::CAD]

# File lib/definitions/transaction_sets/manual/810/810.rb, line 108
def CAD()
  yield(@cad) if block_given?
  return @cad
end
CTT() { |ctt| ... } click to toggle source

(see Eddy::Segments::CTT)

@yieldparam [Eddy::Segments::CTT] @return [Eddy::Segments::CTT]

# File lib/definitions/transaction_sets/manual/810/810.rb, line 130
def CTT()
  yield(@ctt) if block_given?
  return @ctt
end
DTM() { |dtm| ... } click to toggle source

(see Eddy::Segments::DTM)

@yieldparam [Eddy::Segments::DTM] @return [Eddy::Segments::DTM]

# File lib/definitions/transaction_sets/manual/810/810.rb, line 77
def DTM()
  yield(@dtm) if block_given?
  return @dtm
end
L_IT1(&block) click to toggle source

(see Eddy::TransactionSets::TS810::Loops::IT1::Base)

@yieldparam [Eddy::TransactionSets::TS810::Loops::IT1::Repeat] @return [void]

# File lib/definitions/transaction_sets/manual/810/810.rb, line 86
def L_IT1(&block)
  if block_given?
    @l_it1.repeat(&block)
  else
    raise Eddy::Errors::Error, "No block given in loop iteration"
  end
  return nil
end
L_N1(&block) click to toggle source

(see Eddy::TransactionSets::TS810::Loops::N1::Base)

@yieldparam [Eddy::TransactionSets::TS810::Loops::N1::Repeat] @return [void]

# File lib/definitions/transaction_sets/manual/810/810.rb, line 64
def L_N1(&block)
  if block_given?
    @l_n1.repeat(&block)
  else
    raise Eddy::Errors::Error, "No block given in loop iteration"
  end
  return nil
end
L_SAC(&block) click to toggle source

(see Eddy::TransactionSets::TS810::Loops::SAC::Base)

@yieldparam [Eddy::TransactionSets::TS810::Loops::SAC::Repeat] @return [void]

# File lib/definitions/transaction_sets/manual/810/810.rb, line 117
def L_SAC(&block)
  if block_given?
    @l_sac.repeat(&block)
  else
    raise Eddy::Errors::Error, "No block given in loop iteration"
  end
  return nil
end
REF() { |ref| ... } click to toggle source

(see Eddy::Segments::REF)

@yieldparam [Eddy::Segments::REF] @return [Eddy::Segments::REF]

# File lib/definitions/transaction_sets/manual/810/810.rb, line 55
def REF()
  yield(@ref) if block_given?
  return @ref
end
TDS() { |tds| ... } click to toggle source

(see Eddy::Segments::TDS)

@yieldparam [Eddy::Segments::TDS] @return [Eddy::Segments::TDS]

# File lib/definitions/transaction_sets/manual/810/810.rb, line 99
def TDS()
  yield(@tds) if block_given?
  return @tds
end