Class: Twilio::REST::Conversations::V1::ServiceContext::ConfigurationInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/conversations/v1/service/configuration.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, chat_service_sid: nil) ⇒ ConfigurationInstance

Initialize the ConfigurationInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • chat_service_sid (String) (defaults to: nil)

    The unique string that we created to identify the Service configuration resource.



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_sidString

Returns The unique string that identifies the resource.

Returns:

  • (String)

    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

#contextConfigurationContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context

Returns:



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_sidString

Returns The service role assigned to users when they are added to the service.

Returns:

  • (String)

    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_sidString

Returns The role assigned to a conversation creator user when they join a new conversation.

Returns:

  • (String)

    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_sidString

Returns The role assigned to users when they are added to a conversation.

Returns:

  • (String)

    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

#fetchConfigurationInstance

Fetch the ConfigurationInstance

Returns:



217
218
219
# File 'lib/twilio-ruby/rest/conversations/v1/service/configuration.rb', line 217

def fetch
  context.fetch
end

#inspectObject

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

Returns Absolute URL to access the push notifications configuration of this service.

Returns:

  • (String)

    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_sObject

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

Parameters:

  • default_conversation_creator_role_sid (String) (defaults to: :unset)

    The conversation-level role assigned to a conversation creator when they join a new conversation. See the Conversation Role for more info about roles.

  • default_conversation_role_sid (String) (defaults to: :unset)

    The conversation-level role assigned to users when they are added to a conversation. See the Conversation Role for more info about roles.

  • default_chat_service_role_sid (String) (defaults to: :unset)

    The service-level role assigned to users when they are added to the service. See the Conversation Role for more info about roles.

Returns:



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

#urlString

Returns An absolute URL for this service configuration.

Returns:

  • (String)

    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