Class: W3cApi::Models::Group
- Inherits:
-
Lutaml::Hal::Resource
- Object
- Lutaml::Hal::Resource
- W3cApi::Models::Group
- Defined in:
- lib/w3c_api/models/group.rb
Overview
Group model representing a W3C working group
Instance Method Summary collapse
- #chairs(client = nil) ⇒ Object
- #specifications(client = nil) ⇒ Object
- #team_contacts(client = nil) ⇒ Object
- #users(client = nil) ⇒ Object
Instance Method Details
#chairs(client = nil) ⇒ Object
105 106 107 108 109 |
# File 'lib/w3c_api/models/group.rb', line 105 def chairs(client = nil) return nil unless client client.group_chairs(id) end |
#specifications(client = nil) ⇒ Object
99 100 101 102 103 |
# File 'lib/w3c_api/models/group.rb', line 99 def specifications(client = nil) return nil unless client client.group_specifications(id) end |
#team_contacts(client = nil) ⇒ Object
111 112 113 114 115 |
# File 'lib/w3c_api/models/group.rb', line 111 def team_contacts(client = nil) return nil unless client client.group_team_contacts(id) end |
#users(client = nil) ⇒ Object
93 94 95 96 97 |
# File 'lib/w3c_api/models/group.rb', line 93 def users(client = nil) return nil unless client client.group_users(id) end |