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

     1  /*
     2   * NRF OAuth2
     3   *
     4   * NRF OAuth2 Authorization
     5   *
     6   * API version: 1.0.1
     7   * Generated by: OpenAPI Generator (https://openapi-generator.tech)
     8   */
     9  
    10  package models
    11  
    12  // Error returned in the access token response message
    13  type AccessTokenErr struct {
    14  	Error            string `json:"error" yaml:"error" bson:"error" mapstructure:"Error"`
    15  	ErrorDescription string `json:"error_description,omitempty" yaml:"error_description" bson:"error_description" mapstructure:"ErrorDescription"`
    16  	ErrorUri         string `json:"error_uri,omitempty" yaml:"error_uri" bson:"error_uri" mapstructure:"ErrorUri"`
    17  }