Class: Twilio::REST::Conversations::V1::ServiceContext::ConfigurationInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Conversations::V1::ServiceContext::ConfigurationInstance
- Defined in:
- lib/twilio-ruby/rest/conversations/v1/service/configuration.rb
Instance Method Summary collapse
-
#chat_service_sid ⇒ String
The unique string that identifies the resource.
-
#context ⇒ ConfigurationContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#default_chat_service_role_sid ⇒ String
The service role assigned to users when they are added to the service.
-
#default_conversation_creator_role_sid ⇒ String
The role assigned to a conversation creator user when they join a new conversation.
-
#default_conversation_role_sid ⇒ String
The role assigned to users when they are added to a conversation.
-
#fetch ⇒ ConfigurationInstance
Fetch the ConfigurationInstance.
-
#initialize(version, payload, chat_service_sid: nil) ⇒ ConfigurationInstance
constructor
Initialize the ConfigurationInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#links ⇒ String
Absolute URL to access the push notifications configuration of this service.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(default_conversation_creator_role_sid: :unset, default_conversation_role_sid: :unset, default_chat_service_role_sid: :unset) ⇒ ConfigurationInstance
Update the ConfigurationInstance.
-
#url ⇒ String
An absolute URL for this service configuration.
Constructor Details
#initialize(version, payload, chat_service_sid: nil) ⇒ ConfigurationInstance
Initialize the ConfigurationInstance
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/configuration.rb', line 149 def initialize(version, payload, chat_service_sid: nil) super(version) # Marshaled Properties @properties = { 'chat_service_sid' => payload['chat_service_sid'], 'default_conversation_creator_role_sid' => payload['default_conversation_creator_role_sid'], 'default_conversation_role_sid' => payload['default_conversation_role_sid'], 'default_chat_service_role_sid' => payload['default_chat_service_role_sid'], 'url' => payload['url'], 'links' => payload['links'], } # Context @instance_context = nil @params = {'chat_service_sid' => chat_service_sid, } end |
Instance Method Details
#chat_service_sid ⇒ String
Returns The unique string that identifies the resource.
180 181 182 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/configuration.rb', line 180 def chat_service_sid @properties['chat_service_sid'] end |
#context ⇒ ConfigurationContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
171 172 173 174 175 176 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/configuration.rb', line 171 def context unless @instance_context @instance_context = ConfigurationContext.new(@version, @params['chat_service_sid'], ) end @instance_context end |
#default_chat_service_role_sid ⇒ String
Returns The service role assigned to users when they are added to the service.
198 199 200 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/configuration.rb', line 198 def default_chat_service_role_sid @properties['default_chat_service_role_sid'] end |
#default_conversation_creator_role_sid ⇒ String
Returns The role assigned to a conversation creator user when they join a new conversation.
186 187 188 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/configuration.rb', line 186 def default_conversation_creator_role_sid @properties['default_conversation_creator_role_sid'] end |
#default_conversation_role_sid ⇒ String
Returns The role assigned to users when they are added to a conversation.
192 193 194 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/configuration.rb', line 192 def default_conversation_role_sid @properties['default_conversation_role_sid'] end |
#fetch ⇒ ConfigurationInstance
Fetch the ConfigurationInstance
217 218 219 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/configuration.rb', line 217 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
254 255 256 257 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/configuration.rb', line 254 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Conversations.V1.ConfigurationInstance #{values}>" end |
#links ⇒ String
Returns Absolute URL to access the push notifications configuration of this service.
210 211 212 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/configuration.rb', line 210 def links @properties['links'] end |
#to_s ⇒ Object
Provide a user friendly representation
247 248 249 250 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/configuration.rb', line 247 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Conversations.V1.ConfigurationInstance #{values}>" end |
#update(default_conversation_creator_role_sid: :unset, default_conversation_role_sid: :unset, default_chat_service_role_sid: :unset) ⇒ ConfigurationInstance
Update the ConfigurationInstance
237 238 239 240 241 242 243 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/configuration.rb', line 237 def update(default_conversation_creator_role_sid: :unset, default_conversation_role_sid: :unset, default_chat_service_role_sid: :unset) context.update( default_conversation_creator_role_sid: default_conversation_creator_role_sid, default_conversation_role_sid: default_conversation_role_sid, default_chat_service_role_sid: default_chat_service_role_sid, ) end |
#url ⇒ String
Returns An absolute URL for this service configuration.
204 205 206 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/configuration.rb', line 204 def url @properties['url'] end |