github.com/free5gc/openapi@v1.0.8/models/model_events_subsc_req_data.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  // Identifies the events the application subscribes to.
    13  type EventsSubscReqData 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 *UsageThreshold `json:"usgThres,omitempty" yaml:"usgThres" bson:"usgThres" mapstructure:"UsgThres"`
    18  }