EdgexAgent/device-gps-go/pkg/models/asyncvalues.go
2025-07-10 20:30:06 +08:00

15 lines
331 B
Go

// -*- Mode: Go; indent-tabs-mode: t -*-
//
// Copyright (C) 2018 IOTech Ltd
//
// SPDX-License-Identifier: Apache-2.0
package models
// AsyncValues is the struct for sending Device readings asynchronously via ProtocolDrivers
type AsyncValues struct {
DeviceName string
SourceName string
CommandValues []*CommandValue
}