package rpcs // ArgsDeviceRegister device register args type ArgsDeviceRegister struct { ProductKey string DeviceCode string DeviceVersion string ModuleName string } // ArgsDeviceUpdate device update args type ArgsDeviceUpdate struct { DeviceIdentifier string DeviceName string DeviceDescription string } // ArgsProductList get products list args type ArgsProductList struct { ArgsPage VendorID uint ProductName string } // ArgsPage page params type ArgsPage struct { Pi int Ps int }