solution = array( 'serviceSid' => $serviceSid, 'identity' => $identity, 'segment' => $segment, ); $this->uri = '/Services/' . rawurlencode($serviceSid) . '/Users/' . rawurlencode($identity) . '/SegmentMemberships/' . rawurlencode($segment) . ''; } /** * Deletes the SegmentMembershipInstance * * @return boolean True if delete succeeds, false otherwise */ public function delete() { return $this->version->delete('delete', $this->uri); } /** * Fetch a SegmentMembershipInstance * * @return SegmentMembershipInstance Fetched SegmentMembershipInstance */ public function fetch() { $params = Values::of(array()); $payload = $this->version->fetch( 'GET', $this->uri, $params ); return new SegmentMembershipInstance( $this->version, $payload, $this->solution['serviceSid'], $this->solution['identity'], $this->solution['segment'] ); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString() { $context = array(); foreach ($this->solution as $key => $value) { $context[] = "$key=$value"; } return '[Twilio.Notify.V1.SegmentMembershipContext ' . implode(' ', $context) . ']'; } }