Class: Twilio::REST::Chat::V1::ServiceContext::UserContext::UserChannelInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, service_sid: nil, user_sid: nil) ⇒ UserChannelInstance

Initialize the UserChannelInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String)

    The SID of the Account that created this UserChannel resource.

  • sid (String)

    The SID of the Call resource to fetch.



166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
# File 'lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb', line 166

def initialize(version, payload , service_sid: nil, user_sid: nil)
    super(version)
    
    # Marshaled Properties
    @properties = { 
        'account_sid' => payload['account_sid'],
        'service_sid' => payload['service_sid'],
        'channel_sid' => payload['channel_sid'],
        'member_sid' => payload['member_sid'],
        'status' => payload['status'],
        'last_consumed_message_index' => payload['last_consumed_message_index'] == nil ? payload['last_consumed_message_index'] : payload['last_consumed_message_index'].to_i,
        'unread_messages_count' => payload['unread_messages_count'] == nil ? payload['unread_messages_count'] : payload['unread_messages_count'].to_i,
        'links' => payload['links'],
    }
end

Instance Method Details

#account_sidString

Returns The SID of the [Account](www.twilio.com/docs/api/rest/account) that created the User Channel resource.

Returns:



185
186
187
# File 'lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb', line 185

def 
    @properties['account_sid']
end

#channel_sidString

Returns The SID of the [Channel](www.twilio.com/docs/api/chat/rest/channels) the resource belongs to.

Returns:



197
198
199
# File 'lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb', line 197

def channel_sid
    @properties['channel_sid']
end

#inspectObject

Provide a detailed, user friendly representation



239
240
241
# File 'lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb', line 239

def inspect
    "<Twilio.Chat.V1.UserChannelInstance>"
end

#last_consumed_message_indexString

Returns The index of the last [Message](www.twilio.com/docs/api/chat/rest/messages) in the [Channel](www.twilio.com/docs/api/chat/rest/channels) that the Member has read.

Returns:



215
216
217
# File 'lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb', line 215

def last_consumed_message_index
    @properties['last_consumed_message_index']
end

Returns The absolute URLs of the [Members](www.twilio.com/docs/chat/api/members), [Messages](www.twilio.com/docs/chat/api/messages) , [Invites](www.twilio.com/docs/chat/api/invites) and, if it exists, the last [Message](www.twilio.com/docs/chat/api/messages) for the Channel.

Returns:



227
228
229
# File 'lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb', line 227

def links
    @properties['links']
end

#member_sidString

Returns The SID of a [Member](www.twilio.com/docs/api/chat/rest/members) that represents the User on the Channel.

Returns:



203
204
205
# File 'lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb', line 203

def member_sid
    @properties['member_sid']
end

#service_sidString

Returns The SID of the [Service](www.twilio.com/docs/api/chat/rest/services) the resource is associated with.

Returns:



191
192
193
# File 'lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb', line 191

def service_sid
    @properties['service_sid']
end

#statusChannelStatus

Returns:

  • (ChannelStatus)


209
210
211
# File 'lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb', line 209

def status
    @properties['status']
end

#to_sObject

Provide a user friendly representation



233
234
235
# File 'lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb', line 233

def to_s
    "<Twilio.Chat.V1.UserChannelInstance>"
end

#unread_messages_countString

Returns The number of unread Messages in the Channel for the User. Note that retrieving messages on a client endpoint does not mean that messages are consumed or read. See [Consumption Horizon feature](/docs/api/chat/guides/consumption-horizon) to learn how to mark messages as consumed.

Returns:

  • (String)

    The number of unread Messages in the Channel for the User. Note that retrieving messages on a client endpoint does not mean that messages are consumed or read. See [Consumption Horizon feature](/docs/api/chat/guides/consumption-horizon) to learn how to mark messages as consumed.



221
222
223
# File 'lib/twilio-ruby/rest/chat/v1/service/user/user_channel.rb', line 221

def unread_messages_count
    @properties['unread_messages_count']
end