class Github::Activity::Notifications

def delete(*args)


github.activity.notifications.delete 'thread_id'
github = Github.new oauth_token: 'token'
= Examples

Delete a thread subscription
def delete(*args)
  arguments(args, :required => [:thread_id])
  delete_request("/notifications/threads/#{thread_id}/subscription", arguments.params)
end