Class: Twilio::REST::Video::V1::RoomContext::ParticipantContext::SubscribeRulesInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Video::V1::RoomContext::ParticipantContext::SubscribeRulesInstance
- Defined in:
- lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribe_rule.rb
Instance Method Summary collapse
-
#date_created ⇒ Time
The ISO 8601 date and time in GMT when the resource was created.
-
#date_updated ⇒ Time
The ISO 8601 date and time in GMT when the resource was last updated.
-
#initialize(version, payload, room_sid: nil, participant_sid: nil) ⇒ SubscribeRulesInstance
constructor
Initialize the SubscribeRulesInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#participant_sid ⇒ String
The SID of the Participant resource for the Subscribe Rules.
-
#room_sid ⇒ String
The SID of the Room resource for the Subscribe Rules.
-
#rules ⇒ Array[String]
A collection of Subscribe Rules that describe how to include or exclude matching tracks.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, payload, room_sid: nil, participant_sid: nil) ⇒ SubscribeRulesInstance
Initialize the SubscribeRulesInstance
115 116 117 118 119 120 121 122 123 124 125 126 |
# File 'lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribe_rule.rb', line 115 def initialize(version, payload, room_sid: nil, participant_sid: nil) super(version) # Marshaled Properties @properties = { 'participant_sid' => payload['participant_sid'], 'room_sid' => payload['room_sid'], 'rules' => payload['rules'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), } end |
Instance Method Details
#date_created ⇒ Time
Returns The ISO 8601 date and time in GMT when the resource was created.
148 149 150 |
# File 'lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribe_rule.rb', line 148 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The ISO 8601 date and time in GMT when the resource was last updated.
154 155 156 |
# File 'lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribe_rule.rb', line 154 def date_updated @properties['date_updated'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
166 167 168 |
# File 'lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribe_rule.rb', line 166 def inspect "<Twilio.Video.V1.SubscribeRulesInstance>" end |
#participant_sid ⇒ String
Returns The SID of the Participant resource for the Subscribe Rules.
130 131 132 |
# File 'lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribe_rule.rb', line 130 def participant_sid @properties['participant_sid'] end |
#room_sid ⇒ String
Returns The SID of the Room resource for the Subscribe Rules.
136 137 138 |
# File 'lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribe_rule.rb', line 136 def room_sid @properties['room_sid'] end |
#rules ⇒ Array[String]
Returns A collection of Subscribe Rules that describe how to include or exclude matching tracks.
142 143 144 |
# File 'lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribe_rule.rb', line 142 def rules @properties['rules'] end |
#to_s ⇒ Object
Provide a user friendly representation
160 161 162 |
# File 'lib/twilio-ruby/rest/video/v1/room/room_participant/room_participant_subscribe_rule.rb', line 160 def to_s "<Twilio.Video.V1.SubscribeRulesInstance>" end |