solution = [ ]; } /** * Constructs a ChannelContext * * @param string $serviceSid The unique SID identifier of the Service. * * @param string $sid A 34 character string that uniquely identifies this Channel. */ public function getContext( string $serviceSid , string $sid ): ChannelContext { return new ChannelContext( $this->version, $serviceSid, $sid ); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString(): string { return '[Twilio.Chat.V3.ChannelList]'; } }