Class: SDM::WorkflowGetResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/models/porcelain.rb

Overview

WorkflowGetResponse returns a requested Workflow.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(meta: nil, rate_limit: nil, workflow: nil) ⇒ WorkflowGetResponse

Returns a new instance of WorkflowGetResponse.



11405
11406
11407
11408
11409
11410
11411
11412
11413
# File 'lib/models/porcelain.rb', line 11405

def initialize(
  meta: nil,
  rate_limit: nil,
  workflow: nil
)
  @meta = meta == nil ? nil : meta
  @rate_limit = rate_limit == nil ? nil : rate_limit
  @workflow = workflow == nil ? nil : workflow
end

Instance Attribute Details

#metaObject

Reserved for future use.



11399
11400
11401
# File 'lib/models/porcelain.rb', line 11399

def meta
  @meta
end

#rate_limitObject

Rate limit information.



11401
11402
11403
# File 'lib/models/porcelain.rb', line 11401

def rate_limit
  @rate_limit
end

#workflowObject

The requested Workflow.



11403
11404
11405
# File 'lib/models/porcelain.rb', line 11403

def workflow
  @workflow
end

Instance Method Details

#to_json(options = {}) ⇒ Object



11415
11416
11417
11418
11419
11420
11421
# File 'lib/models/porcelain.rb', line 11415

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end