Class: GlobalSign::RequestorInfo
- Inherits:
-
Object
- Object
- GlobalSign::RequestorInfo
- Defined in:
- lib/global_sign/requestor_info.rb
Instance Attribute Summary collapse
-
#email ⇒ Object
Returns the value of attribute email.
-
#first_name ⇒ Object
Returns the value of attribute first_name.
-
#function ⇒ Object
Returns the value of attribute function.
-
#last_name ⇒ Object
Returns the value of attribute last_name.
-
#organization_name ⇒ Object
Returns the value of attribute organization_name.
-
#organization_unit ⇒ Object
Returns the value of attribute organization_unit.
-
#phone_number ⇒ Object
Returns the value of attribute phone_number.
Instance Method Summary collapse
-
#initialize(first_name:, last_name:, function: nil, organization_name:, organization_unit: nil, phone_number:, email:) ⇒ RequestorInfo
constructor
A new instance of RequestorInfo.
Constructor Details
#initialize(first_name:, last_name:, function: nil, organization_name:, organization_unit: nil, phone_number:, email:) ⇒ RequestorInfo
Returns a new instance of RequestorInfo.
5 6 7 8 9 10 11 12 13 |
# File 'lib/global_sign/requestor_info.rb', line 5 def initialize(first_name:, last_name:, function: nil, organization_name:, organization_unit: nil, phone_number:, email:) @first_name = first_name @last_name = last_name @function = function @organization_name = organization_name @organization_unit = organization_unit @phone_number = phone_number @email = email end |
Instance Attribute Details
#email ⇒ Object
Returns the value of attribute email.
3 4 5 |
# File 'lib/global_sign/requestor_info.rb', line 3 def email @email end |
#first_name ⇒ Object
Returns the value of attribute first_name.
3 4 5 |
# File 'lib/global_sign/requestor_info.rb', line 3 def first_name @first_name end |
#function ⇒ Object
Returns the value of attribute function.
3 4 5 |
# File 'lib/global_sign/requestor_info.rb', line 3 def function @function end |
#last_name ⇒ Object
Returns the value of attribute last_name.
3 4 5 |
# File 'lib/global_sign/requestor_info.rb', line 3 def last_name @last_name end |
#organization_name ⇒ Object
Returns the value of attribute organization_name.
3 4 5 |
# File 'lib/global_sign/requestor_info.rb', line 3 def organization_name @organization_name end |
#organization_unit ⇒ Object
Returns the value of attribute organization_unit.
3 4 5 |
# File 'lib/global_sign/requestor_info.rb', line 3 def organization_unit @organization_unit end |
#phone_number ⇒ Object
Returns the value of attribute phone_number.
3 4 5 |
# File 'lib/global_sign/requestor_info.rb', line 3 def phone_number @phone_number end |