package rpcs // ArgsDeviceRegister device register args type ArgsDeviceRegister struct { ProductKey string DeviceCode string DeviceVersion string ModuleName string } // ArgsDeviceAuth device auth type ArgsDeviceAuth struct { DeviceID string } // ArgsDeviceAuth device auth type ArgsAppAuth struct { AppKey string Secretkey 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 }