Sha256: 5de7dd4654aec8c439a6653a578ed5bc56772ee13a7e1b61cab9120796433d61
Contents?: true
Size: 302 Bytes
Versions: 8
Compression:
Stored size: 302 Bytes
Contents
# frozen_string_literal: true module Alpaca module Trade module Api class Calendar attr_reader :date, :open, :close def initialize(json) @date = json['date'] @open = json['open'] @close = json['close'] end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems