Sha256: f7a7359764abe62949524eeaa1c89926887d81840e66e53d905c177749687ed7

Contents?: true

Size: 361 Bytes

Versions: 6

Compression:

Stored size: 361 Bytes

Contents

module Calendlyr
  class Group < Object
    def associated_organization
      Organization.new({"uri" => organization}.merge(client: client))
    end

    def events(**params)
      client.events.list(**params.merge(group: uri))
    end

    def group_relationships(**params)
      client.groups.list_relationships(**params.merge(group: uri))
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
calendlyr-0.7.5 lib/calendlyr/objects/group.rb
calendlyr-0.7.4 lib/calendlyr/objects/group.rb
calendlyr-0.7.3 lib/calendlyr/objects/group.rb
calendlyr-0.7.2 lib/calendlyr/objects/group.rb
calendlyr-0.7.1 lib/calendlyr/objects/group.rb
calendlyr-0.7.0 lib/calendlyr/objects/group.rb