Sha256: 84e3c369e7fa54e7f75ed5509244bb349debcfd8a165f7a8a752989e08f66dfd
Contents?: true
Size: 474 Bytes
Versions: 3
Compression:
Stored size: 474 Bytes
Contents
module OData class Operation attr_reader :name attr_reader :binding_type attr_reader :entity_set_type attr_reader :parameters attr_reader :return_type def initialize(options = {}) @name = options[:name] @entity_set_type = options[:entity_set_type] @binding_type = options[:binding_type] @parameters = options[:parameters] @return_type = options[:return_type] end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
microsoft_graph-0.1.3 | lib/odata/operation.rb |
microsoft_graph-0.1.1 | lib/odata/operation.rb |
microsoft_graph-0.1.0 | lib/odata/operation.rb |