github.com/onosproject/onos-api/go@v0.10.32/onos/e2t/e2sm/setup.go (about)

     1  // SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org>
     2  //
     3  // SPDX-License-Identifier: Apache-2.0
     4  
     5  package types
     6  
     7  import (
     8  	topoapi "github.com/onosproject/onos-api/go/onos/topo"
     9  )
    10  
    11  // OnSetupRequest on E2 setup request
    12  type OnSetupRequest struct {
    13  	ServiceModels          map[string]*topoapi.ServiceModelInfo
    14  	E2Cells                *[]*topoapi.E2Cell
    15  	RANFunctionDescription []byte
    16  }