Class: Io::Flow::V0::Models::FlowRole
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::FlowRole
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Class Method Summary collapse
- .ALL ⇒ Object
-
.apply(value) ⇒ Object
Returns the instance of FlowRole for this value, creating a new instance for an unknown value.
-
.channel_admin ⇒ Object
Can fully administrate a channel.
-
.channel_organization_admin ⇒ Object
Can fully administrate a channel organization.
-
.flow_operations ⇒ Object
Can access Flow internal functions.
-
.from_string(value) ⇒ Object
Returns the instance of FlowRole for this value, or nil if not found.
-
.organization_admin ⇒ Object
Can fully administrate a merchant organization.
-
.organization_customer_service ⇒ Object
Can access customer service functions and retreive relevant data.
-
.organization_finance ⇒ Object
Can access billing and reconcilliation functions and retreive relevant data.
-
.organization_fulfillment ⇒ Object
Can access fulfillment functions and retreive relevant data.
-
.organization_marketing ⇒ Object
Can access marketing functions and retreive relevant data.
-
.organization_merchant ⇒ Object
Can access merchant functions such as analytics, billing, experiences.
Instance Method Summary collapse
-
#initialize(value) ⇒ FlowRole
constructor
A new instance of FlowRole.
- #to_hash ⇒ Object
Constructor Details
#initialize(value) ⇒ FlowRole
Returns a new instance of FlowRole.
20636 20637 20638 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20636 def initialize(value) @value = HttpClient::Preconditions.assert_class('value', value, String) end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
20634 20635 20636 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20634 def value @value end |
Class Method Details
.ALL ⇒ Object
20656 20657 20658 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20656 def FlowRole.ALL @@all ||= [FlowRole.organization_admin, FlowRole.organization_merchant, FlowRole.organization_customer_service, FlowRole.organization_fulfillment, FlowRole.organization_marketing, FlowRole.organization_finance, FlowRole.flow_operations, FlowRole.channel_admin, FlowRole.channel_organization_admin] end |
.apply(value) ⇒ Object
Returns the instance of FlowRole for this value, creating a new instance for an unknown value
20641 20642 20643 20644 20645 20646 20647 20648 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20641 def FlowRole.apply(value) if value.instance_of?(FlowRole) value else HttpClient::Preconditions.assert_class_or_nil('value', value, String) value.nil? ? nil : (from_string(value) || FlowRole.new(value)) end end |
.channel_admin ⇒ Object
Can fully administrate a channel
20696 20697 20698 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20696 def FlowRole.channel_admin @@_channel_admin ||= FlowRole.new('channel_admin') end |
.channel_organization_admin ⇒ Object
Can fully administrate a channel organization
20701 20702 20703 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20701 def FlowRole.channel_organization_admin @@_channel_organization_admin ||= FlowRole.new('channel_organization_admin') end |
.flow_operations ⇒ Object
Can access Flow internal functions.
20691 20692 20693 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20691 def FlowRole.flow_operations @@_flow_operations ||= FlowRole.new('flow_operations') end |
.from_string(value) ⇒ Object
Returns the instance of FlowRole for this value, or nil if not found
20651 20652 20653 20654 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20651 def FlowRole.from_string(value) HttpClient::Preconditions.assert_class('value', value, String) FlowRole.ALL.find { |v| v.value == value } end |
.organization_admin ⇒ Object
Can fully administrate a merchant organization.
20661 20662 20663 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20661 def FlowRole.organization_admin @@_organization_admin ||= FlowRole.new('organization_admin') end |
.organization_customer_service ⇒ Object
Can access customer service functions and retreive relevant data.
20671 20672 20673 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20671 def FlowRole.organization_customer_service @@_organization_customer_service ||= FlowRole.new('organization_customer_service') end |
.organization_finance ⇒ Object
Can access billing and reconcilliation functions and retreive relevant data.
20686 20687 20688 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20686 def FlowRole.organization_finance @@_organization_finance ||= FlowRole.new('organization_finance') end |
.organization_fulfillment ⇒ Object
Can access fulfillment functions and retreive relevant data.
20676 20677 20678 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20676 def FlowRole.organization_fulfillment @@_organization_fulfillment ||= FlowRole.new('organization_fulfillment') end |
Instance Method Details
#to_hash ⇒ Object
20705 20706 20707 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20705 def to_hash value end |