/// <summary> /// Initializes a new instance of the NAUserResponse class. /// </summary> public NAUserResponse(string status = default(string), NAUser body = default(NAUser), double?timeExec = default(double?), int?timeServer = default(int?)) { Status = status; Body = body; TimeExec = timeExec; TimeServer = timeServer; CustomInit(); }
/// <summary> /// Initializes a new instance of the NAStationDataBody class. /// </summary> public NAStationDataBody(IList <NAMain> devices = default(IList <NAMain>), NAUser user = default(NAUser)) { Devices = devices; User = user; CustomInit(); }
/// <summary> /// Initializes a new instance of the NAThermostatDataBody class. /// </summary> public NAThermostatDataBody(IList <NAPlug> devices = default(IList <NAPlug>), NAUser user = default(NAUser)) { Devices = devices; User = user; CustomInit(); }
/// <summary> /// Initializes a new instance of the NAHealthyHomeCoachDataBody class. /// </summary> public NAHealthyHomeCoachDataBody(IList <NAHealthyHomeCoach> devices = default(IList <NAHealthyHomeCoach>), NAUser user = default(NAUser)) { Devices = devices; User = user; CustomInit(); }