Inheritance: Aliyun.Acs.Core.AcsResponse
        public static RegistDeviceResponse Unmarshall(UnmarshallerContext context)
        {
            RegistDeviceResponse registDeviceResponse = new RegistDeviceResponse();

            registDeviceResponse.HttpResponse = context.HttpResponse;
            registDeviceResponse.RequestId = context.StringValue("RegistDevice.RequestId");
            registDeviceResponse.Success = context.BooleanValue("RegistDevice.Success");
            registDeviceResponse.ErrorMessage = context.StringValue("RegistDevice.ErrorMessage");
            registDeviceResponse.DeviceId = context.StringValue("RegistDevice.DeviceId");
            registDeviceResponse.DeviceName = context.StringValue("RegistDevice.DeviceName");
            registDeviceResponse.DeviceSecret = context.StringValue("RegistDevice.DeviceSecret");
            registDeviceResponse.DeviceStatus = context.StringValue("RegistDevice.DeviceStatus");

            return registDeviceResponse;
        }