class Hackle::Variation
Attributes
dropped[R]
@!attribute id
@return [Integer]
@!attribute key
@return [String]
@!attribute dropped
@return [boolean]
id[R]
@!attribute id
@return [Integer]
@!attribute key
@return [String]
@!attribute dropped
@return [boolean]
key[R]
@!attribute id
@return [Integer]
@!attribute key
@return [String]
@!attribute dropped
@return [boolean]
Public Class Methods
new(id:, key:, dropped:)
click to toggle source
@param id [Integer] @param key [String] @param dropped [boolean]
# File lib/hackle/models/variation.rb, line 15 def initialize(id:, key:, dropped:) @id = id @key = key @dropped = dropped end