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

     1  /*
     2   * NRF NFManagement Service
     3   *
     4   * NRF NFManagement Service
     5   *
     6   * API version: 1.0.1
     7   * Generated by: OpenAPI Generator (https://openapi-generator.tech)
     8   */
     9  
    10  package models
    11  
    12  type ChangeItem struct {
    13  	Op        ChangeType  `json:"op" yaml:"op" bson:"op" mapstructure:"Op"`
    14  	Path      string      `json:"path" yaml:"path" bson:"path" mapstructure:"Path"`
    15  	From      string      `json:"from,omitempty" yaml:"from" bson:"from" mapstructure:"From"`
    16  	OrigValue interface{} `json:"origValue,omitempty" yaml:"origValue" bson:"origValue" mapstructure:"OrigValue"`
    17  	NewValue  interface{} `json:"newValue,omitempty" yaml:"newValue" bson:"newValue" mapstructure:"NewValue"`
    18  }