Class: Teams::Api::TokenResponse
- Inherits:
-
Model
- Object
- Model
- Teams::Api::TokenResponse
show all
- Defined in:
- lib/teams/api/token.rb
Instance Attribute Summary
Attributes inherited from Model
#raw
Instance Method Summary
collapse
Methods inherited from Model
#initialize, #to_h
Instance Method Details
#channel_id ⇒ Object
6
7
8
|
# File 'lib/teams/api/token.rb', line 6
def channel_id
read("channelId", "channel_id")
end
|
#connection_name ⇒ Object
10
11
12
|
# File 'lib/teams/api/token.rb', line 10
def connection_name
read("connectionName", "connection_name")
end
|
#expiration ⇒ Object
18
19
20
|
# File 'lib/teams/api/token.rb', line 18
def expiration
read("expiration")
end
|
#properties ⇒ Object
22
23
24
|
# File 'lib/teams/api/token.rb', line 22
def properties
read("properties")
end
|
#token ⇒ Object
14
15
16
|
# File 'lib/teams/api/token.rb', line 14
def token
read("token")
end
|