class Eddy::Segments::SCH

### Segment Summary:

Public Class Methods

new(store) click to toggle source

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

Calls superclass method Eddy::Models::Segment::new
# File lib/definitions/segments/generated/sch.rb, line 12
def initialize(store)
  @id = "SCH"
  @name = "Line Item Schedule"
  @sch01 = Eddy::Elements::E380.new(ref: "SCH01", req: "M")
  @sch03 = Eddy::Elements::E98.new(ref: "SCH03", req: "O")
  super(
    store,
    @sch01,
    @sch03,
  )
end

Public Instance Methods

EntityIdentifierCode=(arg)
Alias for: SCH03=
Quantity=(arg)
Alias for: SCH01=
SCH01=(arg) click to toggle source

### SCH01

  • Id: 380

  • Name: Quantity

  • Type: R

  • Min/Max: 1/15

  • Description: Numeric value of quantity

@param arg [Float] @return [void]

# File lib/definitions/segments/generated/sch.rb, line 34
def SCH01=(arg)
  @sch01.value = arg
end
Also aliased as: Quantity=
SCH03=(arg) click to toggle source

### SCH03

  • Id: 98

  • Name: Entity Identifier Code

  • Type: ID

  • Min/Max: 2/3

  • Description: Code identifying an organizational entity, a physical location, property or an individual

@param arg [String] @return [void]

# File lib/definitions/segments/generated/sch.rb, line 49
def SCH03=(arg)
  @sch03.value = arg
end
Also aliased as: EntityIdentifierCode=