class StrawberryAPI::ArchiveStrategyState

Attributes

archive_strategy_id[RW]
cancelled[RW]
direction[RW]
error[RW]
exclude_linked_files[RW]
id[RW]
progress[RW]
project_id[RW]
stage[RW]
started_at[RW]
state[RW]
user_id[RW]

Public Class Methods

new(params = {}) click to toggle source
# File lib/strawberry_api/strategy/archive_strategy_state.rb, line 18
def initialize(params = {})
  params.each do |k, v|
    instance_variable_set("@#{k}", v) unless v.nil?
  end
end