Name | Type | Description | Notes |
---|---|---|---|
Parameters | string | OAuth 2.0 authorization request parameters which are the request parameters that the OAuth 2.0 authorization endpoint of the authorization server implementation received from the client application. The value of parameters is either (1) the entire query string when the HTTP method of the request from the client application is `GET` or (2) the entire entity body (which is formatted in `application/x-www-form-urlencoded`) when the HTTP method of the request from the client application is `POST`. |
func NewAuthorizationRequest(parameters string, ) *AuthorizationRequest
NewAuthorizationRequest instantiates a new AuthorizationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewAuthorizationRequestWithDefaults() *AuthorizationRequest
NewAuthorizationRequestWithDefaults instantiates a new AuthorizationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *AuthorizationRequest) GetParameters() string
GetParameters returns the Parameters field if non-nil, zero value otherwise.
func (o *AuthorizationRequest) GetParametersOk() (*string, bool)
GetParametersOk returns a tuple with the Parameters field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *AuthorizationRequest) SetParameters(v string)
SetParameters sets Parameters field to given value.