Class: PlatformAPI::SpaceTransfer

Inherits:
Object
  • Object
show all
Defined in:
lib/platform-api/client.rb

Overview

Transfer spaces between enterprise teams with the same Enterprise Account.

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ SpaceTransfer

Returns a new instance of SpaceTransfer.



2969
2970
2971
# File 'lib/platform-api/client.rb', line 2969

def initialize(client)
  @client = client
end

Instance Method Details

#transfer(space_id_or_space_name, body = {}) ⇒ Object

Transfer space between enterprise teams

Parameters:

  • space_id_or_space_name:

    unique identifier of space or unique name of space

  • body:

    the object to pass as the request payload



2977
2978
2979
# File 'lib/platform-api/client.rb', line 2977

def transfer(space_id_or_space_name, body = {})
  @client.space_transfer.transfer(space_id_or_space_name, body)
end