class Github::Client::Orgs::Teams

def delete(*args)


github.orgs.teams.delete 'team-id'
github = Github.new oauth_token: '...'
@example

of the org that the team is associated with
In order to delete a team, the authenticated user must be an owner

Delete a team
def delete(*args)
  arguments(args, required: [:id])
  delete_request("/teams/#{arguments.id}", arguments.params)
end