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
108 109 110 111 112 |
# File 'lib/w3c_api/models/group.rb', line 108 def chairs(client = nil) return nil unless client client.group_chairs(id) end |
#specifications(client = nil) ⇒ Object
102 103 104 105 106 |
# File 'lib/w3c_api/models/group.rb', line 102 def specifications(client = nil) return nil unless client client.group_specifications(id) end |
#team_contacts(client = nil) ⇒ Object
114 115 116 117 118 |
# File 'lib/w3c_api/models/group.rb', line 114 def team_contacts(client = nil) return nil unless client client.group_team_contacts(id) end |
#users(client = nil) ⇒ Object
96 97 98 99 100 |
# File 'lib/w3c_api/models/group.rb', line 96 def users(client = nil) return nil unless client client.group_users(id) end |