Name | Type | Description | Notes |
---|---|---|---|
Json | string | Client metadata in JSON format that complies with RFC 7591 (OAuth 2.0 Dynamic Client Registration Protocol). | |
Token | Pointer to string | The client registration access token. Used only for GET, UPDATE, and DELETE requests. | [optional] |
ClientId | Pointer to string | The client's identifier. Used for GET, UPDATE, and DELETE requests | [optional] |
func NewClientRegistrationRequest(json string, ) *ClientRegistrationRequest
NewClientRegistrationRequest instantiates a new ClientRegistrationRequest 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 NewClientRegistrationRequestWithDefaults() *ClientRegistrationRequest
NewClientRegistrationRequestWithDefaults instantiates a new ClientRegistrationRequest 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 *ClientRegistrationRequest) GetJson() string
GetJson returns the Json field if non-nil, zero value otherwise.
func (o *ClientRegistrationRequest) GetJsonOk() (*string, bool)
GetJsonOk returns a tuple with the Json field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ClientRegistrationRequest) SetJson(v string)
SetJson sets Json field to given value.
func (o *ClientRegistrationRequest) GetToken() string
GetToken returns the Token field if non-nil, zero value otherwise.
func (o *ClientRegistrationRequest) GetTokenOk() (*string, bool)
GetTokenOk returns a tuple with the Token field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ClientRegistrationRequest) SetToken(v string)
SetToken sets Token field to given value.
func (o *ClientRegistrationRequest) HasToken() bool
HasToken returns a boolean if a field has been set.
func (o *ClientRegistrationRequest) GetClientId() string
GetClientId returns the ClientId field if non-nil, zero value otherwise.
func (o *ClientRegistrationRequest) GetClientIdOk() (*string, bool)
GetClientIdOk returns a tuple with the ClientId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ClientRegistrationRequest) SetClientId(v string)
SetClientId sets ClientId field to given value.
func (o *ClientRegistrationRequest) HasClientId() bool
HasClientId returns a boolean if a field has been set.