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

     1  /*
     2   * Npcf_PolicyAuthorization Service API
     3   *
     4   * This is the Policy Authorization Service
     5   *
     6   * API version: 1.0.1
     7   * Generated by: OpenAPI Generator (https://openapi-generator.tech)
     8   */
     9  
    10  package models
    11  
    12  // this data type is defined in the same way as the EventsSubscReqData data type, but with the OpenAPI nullable property set to true.
    13  type EventsSubscReqDataRm struct {
    14  	Events []AfEventSubscription `json:"events" yaml:"events" bson:"events" mapstructure:"Events"`
    15  	// string providing an URI formatted according to IETF RFC 3986.
    16  	NotifUri string            `json:"notifUri,omitempty" yaml:"notifUri" bson:"notifUri" mapstructure:"NotifUri"`
    17  	UsgThres *UsageThresholdRm `json:"usgThres,omitempty" yaml:"usgThres" bson:"usgThres" mapstructure:"UsgThres"`
    18  }