class Cb::Models::Branding::Section

Attributes

description[RW]
requirements[RW]
section_1[RW]
section_2[RW]
section_3[RW]
snapshot[RW]
type[RW]

Public Class Methods

new(type, args = {}) click to toggle source
# File lib/cb/models/implementations/branding/section.rb, line 17
def initialize(type, args = {})
  @type = type
  @section_1 = args['Section1'] || ''
  @section_2 = args['Section2'] || ''
  @section_3 = args['Section3'] || ''
  @description = args['Description'] || ''
  @requirements = args['Requirements'] || ''
  @snapshot = args['Snapshot'] || ''
end