diff --git a/pyown/items/gateway/gateway.py b/pyown/items/gateway/gateway.py index 3b9c0c7..78cdfd8 100644 --- a/pyown/items/gateway/gateway.py +++ b/pyown/items/gateway/gateway.py @@ -127,7 +127,7 @@ async def get_time(self, *, message: EventMessage = None) -> datetime.time: Requests the time of the gateway and bus. Args: - message: The message to parse the time from. If not provided, send a request to the gateway. + message: The message to parse the time from. If not provided, it will send a request to the server. It's used by call_callbacks to parse the message. Returns: @@ -176,7 +176,7 @@ async def get_date(self, *, message: EventMessage = None) -> datetime.date: Requests the date of the gateway and bus. Args: - message: The message to parse the date from. If not provided, send a request to the gateway. + message: The message to parse the date from. If not provided, it will send a request to the server. It's used by call_callbacks to parse the message. Returns: @@ -221,7 +221,7 @@ async def get_ip(self, *, message: EventMessage = None) -> ipaddress.IPv4Address Requests the IP address of the gateway. Args: - message: The message to parse the IP address from. If not provided, send a request to the gateway. + message: The message to parse the IP address from. If not provided, it will send a request to the server. It's used by call_callbacks to parse the message. Returns: @@ -242,7 +242,7 @@ async def get_netmask(self, *, message: EventMessage = None) -> str: Requests the net mask of the gateway. Args: - message: The message to parse the net mask from. If not provided, send a request to the gateway. + message: The message to parse the net mask from. If not provided, it will send a request to the server. It's used by call_callbacks to parse the message. Returns: @@ -262,7 +262,7 @@ async def get_macaddress(self, *, message: EventMessage = None) -> str: Requests the MAC address of the gateway. Args: - message: The message to parse the MAC address from. If not provided, send a request to the gateway. + message: The message to parse the MAC address from. If not provided, it will send a request to the server. It's used by call_callbacks to parse the message. Returns: @@ -294,7 +294,7 @@ async def get_model(self, *, message: EventMessage = None) -> GatewayModel: Requests the device type of the gateway. Args: - message: The message to parse the device type from. If not provided, send a request to the gateway. + message: The message to parse the device type from. If not provided, it will send a request to the server. It's used by call_callbacks to parse the message. Returns: @@ -312,7 +312,7 @@ async def get_firmware(self, *, message: EventMessage = None) -> str: Requests the firmware version of the gateway. Args: - message: The message to parse the firmware version from. If not provided, send a request to the gateway. + message: The message to parse the firmware version from. If not provided, it will send a request to the server. It's used by call_callbacks to parse the message. Returns: @@ -334,7 +334,7 @@ async def get_uptime(self, *, message: EventMessage = None) -> datetime.timedelt Requests the uptime of the gateway. Args: - message: The message to parse the uptime from. If not provided, send a request to the gateway. + message: The message to parse the uptime from. If not provided, it will send a request to the server. It's used by call_callbacks to parse the message. Returns: @@ -358,7 +358,7 @@ async def get_datetime(self, *, message: EventMessage = None) -> datetime.dateti Requests the date and time of the gateway. Args: - message: The message to parse the date and time from. If not provided, send a request to the gateway. + message: The message to parse the date and time from. If not provided, it will send a request to the server. It's used by call_callbacks to parse the message. Returns: @@ -414,7 +414,7 @@ async def get_kernel_version(self, *, message: EventMessage = None) -> str: Requests the linux kernel version of the gateway. Args: - message: The message to parse the kernel version from. If not provided, send a request to the gateway. + message: The message to parse the kernel version from. If not provided, it will send a request to the server. It's used by call_callbacks to parse the message. Returns: @@ -436,7 +436,7 @@ async def get_distribution_version(self, *, message: EventMessage = None) -> str Requests the os distribution version of the gateway. Args: - message: The message to parse the distribution version from. If not provided, send a request to the gateway. + message: The message to parse the distribution version from. If not provided, it will send a request to the server. It's used by call_callbacks to parse the message. Returns: