Method: Unit::Application::PatchApplicationRequest#initialize

Defined in:
lib/unit/models/application/patch_application_request.rb

#initialize(application_id, type, tags = nil) ⇒ PatchApplicationRequest

Returns a new instance of PatchApplicationRequest.

Parameters:

  • application_id (String)

    The application id

  • type (String)

    The type

  • tags (String) (defaults to: nil)

    The tags



14
15
16
17
18
# File 'lib/unit/models/application/patch_application_request.rb', line 14

def initialize(application_id, type, tags = nil)
  @application_id = application_id
  @type = type
  @tags = tags
end