class Twilio::REST::Serverless::V1::ServiceContext::BuildContext::BuildStatusList
PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
Public Class Methods
new(version, service_sid: nil, sid: nil)
click to toggle source
Initialize the BuildStatusList
@param [Version] version Version
that contains the resource @param [String] service_sid The SID of the Service that the Build resource is
associated with.
@param [String] sid The unique string that we created to identify the Build
resource.
@return [BuildStatusList] BuildStatusList
Calls superclass method
Twilio::REST::ListResource::new
# File lib/twilio-ruby/rest/serverless/v1/service/build/build_status.rb 26 def initialize(version, service_sid: nil, sid: nil) 27 super(version) 28 29 # Path Solution 30 @solution = {service_sid: service_sid, sid: sid} 31 end
Public Instance Methods
to_s()
click to toggle source
Provide a user friendly representation
# File lib/twilio-ruby/rest/serverless/v1/service/build/build_status.rb 35 def to_s 36 '#<Twilio.Serverless.V1.BuildStatusList>' 37 end