module Asana::Resources::EventSubscription

Public: Mixin to enable a resource with the ability to fetch events about itself.

Public Instance Methods

events(wait: 1, options: {}) click to toggle source

Public: Returns an infinite collection of events on the resource.

# File lib/asana/resource_includes/event_subscription.rb, line 9
def events(wait: 1, options: {})
  Events.new(resource: gid, client: client, wait: wait, options: options)
end