solution = $solution; } /** * @param array $payload Payload response from the API * @return ConferenceParticipantInstance \Twilio\Rest\Insights\V1\Conference\ConferenceParticipantInstance */ public function buildInstance(array $payload): ConferenceParticipantInstance { return new ConferenceParticipantInstance($this->version, $payload, $this->solution['conferenceSid']); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString(): string { return '[Twilio.Insights.V1.ConferenceParticipantPage]'; } }