Class: ONEAccess::DataObject::UserEntitlementRequest
- Inherits:
-
Object
- Object
- ONEAccess::DataObject::UserEntitlementRequest
- Extended by:
- Serializable
- Defined in:
- lib/oneaccess/data_object/user_entitlement_request.rb
Instance Attribute Summary collapse
-
#buy_side_org ⇒ Object
Returns the value of attribute buy_side_org.
-
#create_date ⇒ Object
Returns the value of attribute create_date.
-
#id ⇒ Object
Returns the value of attribute id.
-
#notes ⇒ Object
Returns the value of attribute notes.
-
#sell_side_org ⇒ Object
Returns the value of attribute sell_side_org.
-
#sell_side_user_groups ⇒ Object
Returns the value of attribute sell_side_user_groups.
-
#status ⇒ Object
Returns the value of attribute status.
-
#update_date ⇒ Object
Returns the value of attribute update_date.
-
#user ⇒ Object
Returns the value of attribute user.
Instance Method Summary collapse
Methods included from Serializable
Instance Attribute Details
permalink #buy_side_org ⇒ Object
Returns the value of attribute buy_side_org.
18 19 20 |
# File 'lib/oneaccess/data_object/user_entitlement_request.rb', line 18 def buy_side_org @buy_side_org end |
permalink #create_date ⇒ Object
Returns the value of attribute create_date.
13 14 15 |
# File 'lib/oneaccess/data_object/user_entitlement_request.rb', line 13 def create_date @create_date end |
permalink #id ⇒ Object
Returns the value of attribute id.
12 13 14 |
# File 'lib/oneaccess/data_object/user_entitlement_request.rb', line 12 def id @id end |
permalink #notes ⇒ Object
Returns the value of attribute notes.
15 16 17 |
# File 'lib/oneaccess/data_object/user_entitlement_request.rb', line 15 def notes @notes end |
permalink #sell_side_org ⇒ Object
Returns the value of attribute sell_side_org.
19 20 21 |
# File 'lib/oneaccess/data_object/user_entitlement_request.rb', line 19 def sell_side_org @sell_side_org end |
permalink #sell_side_user_groups ⇒ Object
Returns the value of attribute sell_side_user_groups.
20 21 22 |
# File 'lib/oneaccess/data_object/user_entitlement_request.rb', line 20 def sell_side_user_groups @sell_side_user_groups end |
permalink #status ⇒ Object
Returns the value of attribute status.
16 17 18 |
# File 'lib/oneaccess/data_object/user_entitlement_request.rb', line 16 def status @status end |
permalink #update_date ⇒ Object
Returns the value of attribute update_date.
14 15 16 |
# File 'lib/oneaccess/data_object/user_entitlement_request.rb', line 14 def update_date @update_date end |
permalink #user ⇒ Object
Returns the value of attribute user.
17 18 19 |
# File 'lib/oneaccess/data_object/user_entitlement_request.rb', line 17 def user @user end |
Instance Method Details
permalink #approved? ⇒ Boolean
26 27 28 |
# File 'lib/oneaccess/data_object/user_entitlement_request.rb', line 26 def approved? status == EntitlementStatus::APPROVED end |
permalink #pending? ⇒ Boolean
22 23 24 |
# File 'lib/oneaccess/data_object/user_entitlement_request.rb', line 22 def pending? status == EntitlementStatus::NONE end |
permalink #provisional? ⇒ Boolean
34 35 36 |
# File 'lib/oneaccess/data_object/user_entitlement_request.rb', line 34 def provisional? status == EntitlementStatus::PROVISIONAL end |
permalink #rejected? ⇒ Boolean
30 31 32 |
# File 'lib/oneaccess/data_object/user_entitlement_request.rb', line 30 def rejected? status == EntitlementStatus::REJECTED end |