Copy latest code to master
[ric-plt/resource-status-manager.git] / RSM / models / rmr_request.go
index fbead1b..43d6f09 100644 (file)
 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 // See the License for the specific language governing permissions and
 // limitations under the License.
-//
+
+//  This source code is part of the near-RT RIC (RAN Intelligent Controller)
+//  platform project (RICP).
+
 
 package models
 
 import "time"
 
 type RmrRequest struct {
-       RanName       string
-       Len           int
-       Payload       []byte
-       StartTime     time.Time
+       RanName   string
+       Len       int
+       Payload   []byte
+       StartTime time.Time
 }
 
 func NewRmrRequest(ranName string, payload []byte, startTime time.Time) *RmrRequest {
@@ -33,4 +36,4 @@ func NewRmrRequest(ranName string, payload []byte, startTime time.Time) *RmrRequ
                payload,
                startTime,
        }
-}
\ No newline at end of file
+}