github.com/free5gc/openapi@v1.0.8/models/model_access_token_rsp.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  type AccessTokenRsp struct {
    13  	// JWS Compact Serialized representation of JWS signed JSON object (AccessTokenClaims)
    14  	AccessToken string `json:"access_token" yaml:"access_token" bson:"access_token" mapstructure:"AccessToken"`
    15  	TokenType   string `json:"token_type" yaml:"token_type" bson:"token_type" mapstructure:"TokenType"`
    16  	ExpiresIn   int32  `json:"expires_in,omitempty" yaml:"expires_in" bson:"expires_in" mapstructure:"ExpiresIn"`
    17  	Scope       string `json:"scope,omitempty" yaml:"scope" bson:"scope" mapstructure:"Scope"`
    18  }