Class: Twilio::REST::Autopilot::V1::AssistantContext::TaskContext::TaskStatisticsInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, assistant_sid: nil, task_sid: nil) ⇒ TaskStatisticsInstance

Initialize the TaskStatisticsInstance

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 TaskStatistics resource.

  • sid (String)

    The SID of the Call resource to fetch.



131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb', line 131

def initialize(version, payload , assistant_sid: nil, task_sid: nil)
    super(version)
    
    # Marshaled Properties
    @properties = { 
        'account_sid' => payload['account_sid'],
        'assistant_sid' => payload['assistant_sid'],
        'task_sid' => payload['task_sid'],
        'samples_count' => payload['samples_count'] == nil ? payload['samples_count'] : payload['samples_count'].to_i,
        'fields_count' => payload['fields_count'] == nil ? payload['fields_count'] : payload['fields_count'].to_i,
        'url' => payload['url'],
    }

    # Context
    @instance_context = nil
    @params = { 'assistant_sid' => assistant_sid  || @properties['assistant_sid']  ,'task_sid' => task_sid  || @properties['task_sid']  , }
end

Instance Method Details

#account_sidString

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

Returns:



162
163
164
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb', line 162

def 
    @properties['account_sid']
end

#assistant_sidString

Returns The SID of the [Assistant](www.twilio.com/docs/autopilot/api/assistant) that is the parent of the Task associated with the resource.

Returns:



168
169
170
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb', line 168

def assistant_sid
    @properties['assistant_sid']
end

#contextTaskStatisticsContext

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

Returns:



153
154
155
156
157
158
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb', line 153

def context
    unless @instance_context
        @instance_context = TaskStatisticsContext.new(@version , @params['assistant_sid'], @params['task_sid'])
    end
    @instance_context
end

#fetchTaskStatisticsInstance

Fetch the TaskStatisticsInstance

Returns:



199
200
201
202
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb', line 199

def fetch

    context.fetch
end

#fields_countString

Returns The total number of [Fields](www.twilio.com/docs/autopilot/api/task-field) associated with the Task.

Returns:



186
187
188
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb', line 186

def fields_count
    @properties['fields_count']
end

#inspectObject

Provide a detailed, user friendly representation



213
214
215
216
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb', line 213

def inspect
    values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Autopilot.V1.TaskStatisticsInstance #{values}>"
end

#samples_countString

Returns The total number of [Samples](www.twilio.com/docs/autopilot/api/task-sample) associated with the Task.

Returns:



180
181
182
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb', line 180

def samples_count
    @properties['samples_count']
end

#task_sidString

Returns The SID of the [Task](www.twilio.com/docs/autopilot/api/task) for which the statistics were collected.

Returns:



174
175
176
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb', line 174

def task_sid
    @properties['task_sid']
end

#to_sObject

Provide a user friendly representation



206
207
208
209
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb', line 206

def to_s
    values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Autopilot.V1.TaskStatisticsInstance #{values}>"
end

#urlString

Returns The absolute URL of the TaskStatistics resource.

Returns:

  • (String)

    The absolute URL of the TaskStatistics resource.



192
193
194
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/task/task_statistics.rb', line 192

def url
    @properties['url']
end