mirror of
https://github.com/absmach/magistrala.git
synced 2026-06-23 04:10:28 +00:00
243ccade0b
Signed-off-by: Felix Gateru <felix.gateru@gmail.com> Signed-off-by: Arvindh <arvindh91@gmail.com> Signed-off-by: Dusan Borovcanin <borovcanindusan1@gmail.com> Co-authored-by: Arvindh <30824765+arvindh123@users.noreply.github.com> Co-authored-by: Felix Gateru <felix.gateru@gmail.com>
26 lines
460 B
Go
26 lines
460 B
Go
// Copyright (c) Abstract Machines
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package grpc
|
|
|
|
import "github.com/absmach/magistrala/pkg/connections"
|
|
|
|
type authorizeReq struct {
|
|
domainID string
|
|
channelID string
|
|
clientID string
|
|
clientType string
|
|
connType connections.ConnType
|
|
}
|
|
type removeClientConnectionsReq struct {
|
|
clientID string
|
|
}
|
|
|
|
type unsetParentGroupFromChannelsReq struct {
|
|
parentGroupID string
|
|
}
|
|
|
|
type retrieveEntityReq struct {
|
|
Id string
|
|
}
|