Class GetUserInformationResponse


public class GetUserInformationResponse extends JsonrpcResponseSuccess
Represents a JSON-RPC Response for GetUserInformationRequest.
 {
   "jsonrpc": "2.0",
   "id": "UUID",
   "result": {
     "user": {
       "firstname": string,
       "lastname": string,
       "email": string,
       "phone": string,
       "address": {
         "street": string,
         "city": string,
         "zip": string,
         "country": string
       },
       "company": {
         "name": string
       }
     }
   }
 }