Class: Io::Flow::V0::Models::PermissionCheck
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::PermissionCheck
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Used to test an integration's permissions, including identifying the authentication technique that will be used for similar requests.
Instance Attribute Summary collapse
-
#authentication_technique ⇒ Object
readonly
Returns the value of attribute authentication_technique.
-
#behaviors ⇒ Object
readonly
Returns the value of attribute behaviors.
-
#roles ⇒ Object
readonly
Returns the value of attribute roles.
-
#routes ⇒ Object
readonly
Returns the value of attribute routes.
-
#user ⇒ Object
readonly
Returns the value of attribute user.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ PermissionCheck
constructor
A new instance of PermissionCheck.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ PermissionCheck
Returns a new instance of PermissionCheck.
41237 41238 41239 41240 41241 41242 41243 41244 41245 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41237 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:authentication_technique, :roles, :behaviors, :routes], 'PermissionCheck') @authentication_technique = (x = opts.delete(:authentication_technique); x.is_a?(::Io::Flow::V0::Models::AuthenticationTechnique) ? x : ::Io::Flow::V0::Models::AuthenticationTechnique.apply(x)) @user = (x = opts.delete(:user); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::ExpandableUser) ? x : ::Io::Flow::V0::Models::ExpandableUser.from_json(x))) @roles = HttpClient::Preconditions.assert_class('roles', opts.delete(:roles), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::FlowRole) ? x : ::Io::Flow::V0::Models::FlowRole.from_json(x)) } @behaviors = HttpClient::Preconditions.assert_class('behaviors', opts.delete(:behaviors), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::FlowBehavior) ? x : ::Io::Flow::V0::Models::FlowBehavior.apply(x)) } @routes = HttpClient::Preconditions.assert_class('routes', opts.delete(:routes), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::PermittedRoute) ? x : ::Io::Flow::V0::Models::PermittedRoute.new(x)) } end |
Instance Attribute Details
#authentication_technique ⇒ Object (readonly)
Returns the value of attribute authentication_technique.
41235 41236 41237 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41235 def authentication_technique @authentication_technique end |
#behaviors ⇒ Object (readonly)
Returns the value of attribute behaviors.
41235 41236 41237 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41235 def behaviors @behaviors end |
#roles ⇒ Object (readonly)
Returns the value of attribute roles.
41235 41236 41237 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41235 def roles @roles end |
#routes ⇒ Object (readonly)
Returns the value of attribute routes.
41235 41236 41237 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41235 def routes @routes end |
#user ⇒ Object (readonly)
Returns the value of attribute user.
41235 41236 41237 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41235 def user @user end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
41251 41252 41253 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41251 def copy(incoming={}) PermissionCheck.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
41255 41256 41257 41258 41259 41260 41261 41262 41263 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41255 def to_hash { :authentication_technique => authentication_technique.value, :user => user.nil? ? nil : user.to_hash, :roles => roles.map { |o| o.to_hash }, :behaviors => behaviors.map { |o| o.value }, :routes => routes.map { |o| o.to_hash } } end |
#to_json ⇒ Object
41247 41248 41249 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41247 def to_json JSON.dump(to_hash) end |