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