class LastbillClient::JobWorkflowRequest

@author ciappa_m@modulotech.fr Request the details about a specific workflow. @see LastbillClient::Request @see LastbillClient::Utils::FinalRequest @see LastbillClient::Utils::AuthentifiedRequest @since 0.1.0

Attributes

id[R]

@return [String] The id of the workflow to request

Public Class Methods

new(id) click to toggle source

@param id [String] Set the id of the workflow to request

Calls superclass method
# File lib/lastbill_client/request/requests/job_workflow_request.rb, line 17
def initialize(id)
  super(:get, "api/job_workflows/#{id}")

  @id      = id
  @query   = {}
  @filters = {}
end