Sha256: 1adbf4c83aed9a6d675e11624fad0c30540638ca731acf7c3dcbb28b43f4f8ab
Contents?: true
Size: 975 Bytes
Versions: 37
Compression:
Stored size: 975 Bytes
Contents
=begin #SnapTrade #Connect brokerage accounts to your app for live positions and trading The version of the OpenAPI document: 1.0.0 Contact: api@snaptrade.com =end require 'date' require 'time' module SnapTrade class OrderType LIMIT = "Limit".freeze MARKET = "Market".freeze STOP_LIMIT = "StopLimit".freeze STOP_LOSS = "StopLoss".freeze def self.all_vars @all_vars ||= [LIMIT, MARKET, STOP_LIMIT, STOP_LOSS].freeze end # Builds the enum from string # @param [String] The enum value in the form of the string # @return [String] The enum value def self.build_from_hash(value) new.build_from_hash(value) end # Builds the enum from string # @param [String] The enum value in the form of the string # @return [String] The enum value def build_from_hash(value) return value if OrderType.all_vars.include?(value) raise "Invalid ENUM value #{value} for class #OrderType" end end end
Version data entries
37 entries across 37 versions & 1 rubygems