Class: Twilio::REST::Events::V1::SinkContext::SinkValidateInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Events::V1::SinkContext::SinkValidateInstance
- Defined in:
- lib/twilio-ruby/rest/events/v1/sink/sink_validate.rb
Overview
PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
Instance Method Summary collapse
-
#initialize(version, payload, sid: nil) ⇒ SinkValidateInstance
constructor
Initialize the SinkValidateInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#result ⇒ String
Feedback indicating whether the given Sink was validated.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, payload, sid: nil) ⇒ SinkValidateInstance
Initialize the SinkValidateInstance
90 91 92 93 94 95 |
# File 'lib/twilio-ruby/rest/events/v1/sink/sink_validate.rb', line 90 def initialize(version, payload, sid: nil) super(version) # Marshaled Properties @properties = {'result' => payload['result'], } end |
Instance Method Details
#inspect ⇒ Object
Provide a detailed, user friendly representation
111 112 113 |
# File 'lib/twilio-ruby/rest/events/v1/sink/sink_validate.rb', line 111 def inspect "<Twilio.Events.V1.SinkValidateInstance>" end |
#result ⇒ String
Returns Feedback indicating whether the given Sink was validated.
99 100 101 |
# File 'lib/twilio-ruby/rest/events/v1/sink/sink_validate.rb', line 99 def result @properties['result'] end |
#to_s ⇒ Object
Provide a user friendly representation
105 106 107 |
# File 'lib/twilio-ruby/rest/events/v1/sink/sink_validate.rb', line 105 def to_s "<Twilio.Events.V1.SinkValidateInstance>" end |