github.com/free5gc/openapi@v1.0.8/models/model_qos_flows_usage_report.go (about)

     1  /*
     2   * Nchf_ConvergedCharging
     3   *
     4   * ConvergedCharging Service    © 2021, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC). All rights reserved.
     5   *
     6   * API version: 3.0.3
     7   * Generated by: OpenAPI Generator (https://openapi-generator.tech)
     8   */
     9  
    10  package models
    11  
    12  import (
    13  	"time"
    14  )
    15  
    16  type QosFlowsUsageReport struct {
    17  	QFI            int32      `json:"qFI,omitempty" yaml:"qFI" bson:"qFI" mapstructure:"QFI"`
    18  	StartTimestamp *time.Time `json:"startTimestamp,omitempty" yaml:"startTimestamp" bson:"startTimestamp" mapstructure:"StartTimestamp"`
    19  	EndTimestamp   *time.Time `json:"endTimestamp,omitempty" yaml:"endTimestamp" bson:"endTimestamp" mapstructure:"EndTimestamp"`
    20  	UplinkVolume   int32      `json:"uplinkVolume,omitempty" yaml:"uplinkVolume" bson:"uplinkVolume" mapstructure:"UplinkVolume"`
    21  	DownlinkVolume int32      `json:"downlinkVolume,omitempty" yaml:"downlinkVolume" bson:"downlinkVolume" mapstructure:"DownlinkVolume"`
    22  }