mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-26 02:42:46 +00:00
39 lines
581 B
Protocol Buffer
39 lines
581 B
Protocol Buffer
/*
|
|
* Copyright (c) 1999-2021 Logitech, Inc.
|
|
* All Rights Reserved
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
syntax = "proto3";
|
|
|
|
package logi.device.proto;
|
|
|
|
option java_package = "com.logitech.vc.proto";
|
|
|
|
/**
|
|
* Request Device information
|
|
* This is to be included in UsbMsg
|
|
|
|
* EXPECTED RESPONSE
|
|
* GetDeviceInfoResponse
|
|
*/
|
|
message GetDeviceInfoRequest
|
|
{
|
|
/**
|
|
* Unused. Reserved for future use.
|
|
*/
|
|
bool reserved = 1;
|
|
}
|
|
|
|
/**
|
|
* Get device information response
|
|
*/
|
|
message GetDeviceInfoResponse
|
|
{
|
|
/**
|
|
* payload contains actual mqtt message
|
|
*/
|
|
string payload = 1;
|
|
}
|