9 lines
282 B
Go
9 lines
282 B
Go
|
|
// Package network define struct of network operation
|
||
|
|
package network
|
||
|
|
|
||
|
|
// ComponetAnchorReplaceRequest defines request params of component anchor point replace api
|
||
|
|
type ComponetAnchorReplaceRequest struct {
|
||
|
|
UUID string `json:"uuid"`
|
||
|
|
AnchorName string `json:"anchor_name"`
|
||
|
|
}
|