Skip to content
network_element.go 433 B
Newer Older
Michel Roy's avatar
Michel Roy committed
 * Copyright (c) 2019
 * InterDigital Communications, Inc.
 * All rights reserved.
Michel Roy's avatar
Michel Roy committed
 * The information provided herein is the proprietary and confidential
 * information of InterDigital Communications, Inc.
 */

package model

// Network element service mappings
type NetworkElement struct {

	// Network element name
	Name string `json:"name,omitempty"`

	ServiceMaps []MobilityGroupServiceMap `json:"serviceMaps,omitempty"`
}