Class: Centaman::Object::Udf

Inherits:
Centaman::Object show all
Defined in:
lib/centaman/object/udf.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Centaman::Object

#attributes, #define_variables, #initialize

Constructor Details

This class inherits a constructor from Centaman::Object

Instance Attribute Details

#field_lengthObject

Returns the value of attribute field_length.



3
4
5
# File 'lib/centaman/object/udf.rb', line 3

def field_length
  @field_length
end

#field_nameObject

Returns the value of attribute field_name.



3
4
5
# File 'lib/centaman/object/udf.rb', line 3

def field_name
  @field_name
end

#field_typeObject

Returns the value of attribute field_type.



3
4
5
# File 'lib/centaman/object/udf.rb', line 3

def field_type
  @field_type
end

#is_attendee_udfObject

Returns the value of attribute is_attendee_udf.



3
4
5
# File 'lib/centaman/object/udf.rb', line 3

def is_attendee_udf
  @is_attendee_udf
end

#is_booking_waiverObject

Returns the value of attribute is_booking_waiver.



3
4
5
# File 'lib/centaman/object/udf.rb', line 3

def is_booking_waiver
  @is_booking_waiver
end

#is_emailObject

Returns the value of attribute is_email.



3
4
5
# File 'lib/centaman/object/udf.rb', line 3

def is_email
  @is_email
end

#is_member_waiverObject

Returns the value of attribute is_member_waiver.



3
4
5
# File 'lib/centaman/object/udf.rb', line 3

def is_member_waiver
  @is_member_waiver
end

#optionsObject

Returns the value of attribute options.



3
4
5
# File 'lib/centaman/object/udf.rb', line 3

def options
  @options
end

#tab_nameObject

Returns the value of attribute tab_name.



3
4
5
# File 'lib/centaman/object/udf.rb', line 3

def tab_name
  @tab_name
end

#valueObject

Returns the value of attribute value.



3
4
5
# File 'lib/centaman/object/udf.rb', line 3

def value
  @value
end

Instance Method Details

#after_init(args) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/centaman/object/udf.rb', line 7

def after_init(args)
  @value = args[:value]
  @field_name = args[:field_name]
  @field_type = args[:field_type]
  @field_length = args[:field_length]
  @is_member_waiver = args[:is_member_waiver]
  @is_booking_waiver = args[:is_booking_waiver]
  @is_attendee_udf = args[:is_attendee_udf]
  @tab_name = args[:tab_name]
  @options = args[:options]
  @is_email = args[:is_email]
end