Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 4.31 KB

ClientSecretRefreshResponse.md

File metadata and controls

134 lines (73 loc) · 4.31 KB

ClientSecretRefreshResponse

Properties

Name Type Description Notes
ResultCode Pointer to string The code which represents the result of the API call. [optional]
ResultMessage Pointer to string A short message which explains the result of the API call. [optional]
NewClientSecret Pointer to string The new client secret. [optional]
OldClientSecret Pointer to string The old client secret. [optional]

Methods

NewClientSecretRefreshResponse

func NewClientSecretRefreshResponse() *ClientSecretRefreshResponse

NewClientSecretRefreshResponse instantiates a new ClientSecretRefreshResponse 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

NewClientSecretRefreshResponseWithDefaults

func NewClientSecretRefreshResponseWithDefaults() *ClientSecretRefreshResponse

NewClientSecretRefreshResponseWithDefaults instantiates a new ClientSecretRefreshResponse 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

GetResultCode

func (o *ClientSecretRefreshResponse) GetResultCode() string

GetResultCode returns the ResultCode field if non-nil, zero value otherwise.

GetResultCodeOk

func (o *ClientSecretRefreshResponse) GetResultCodeOk() (*string, bool)

GetResultCodeOk returns a tuple with the ResultCode field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetResultCode

func (o *ClientSecretRefreshResponse) SetResultCode(v string)

SetResultCode sets ResultCode field to given value.

HasResultCode

func (o *ClientSecretRefreshResponse) HasResultCode() bool

HasResultCode returns a boolean if a field has been set.

GetResultMessage

func (o *ClientSecretRefreshResponse) GetResultMessage() string

GetResultMessage returns the ResultMessage field if non-nil, zero value otherwise.

GetResultMessageOk

func (o *ClientSecretRefreshResponse) GetResultMessageOk() (*string, bool)

GetResultMessageOk returns a tuple with the ResultMessage field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetResultMessage

func (o *ClientSecretRefreshResponse) SetResultMessage(v string)

SetResultMessage sets ResultMessage field to given value.

HasResultMessage

func (o *ClientSecretRefreshResponse) HasResultMessage() bool

HasResultMessage returns a boolean if a field has been set.

GetNewClientSecret

func (o *ClientSecretRefreshResponse) GetNewClientSecret() string

GetNewClientSecret returns the NewClientSecret field if non-nil, zero value otherwise.

GetNewClientSecretOk

func (o *ClientSecretRefreshResponse) GetNewClientSecretOk() (*string, bool)

GetNewClientSecretOk returns a tuple with the NewClientSecret field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetNewClientSecret

func (o *ClientSecretRefreshResponse) SetNewClientSecret(v string)

SetNewClientSecret sets NewClientSecret field to given value.

HasNewClientSecret

func (o *ClientSecretRefreshResponse) HasNewClientSecret() bool

HasNewClientSecret returns a boolean if a field has been set.

GetOldClientSecret

func (o *ClientSecretRefreshResponse) GetOldClientSecret() string

GetOldClientSecret returns the OldClientSecret field if non-nil, zero value otherwise.

GetOldClientSecretOk

func (o *ClientSecretRefreshResponse) GetOldClientSecretOk() (*string, bool)

GetOldClientSecretOk returns a tuple with the OldClientSecret field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetOldClientSecret

func (o *ClientSecretRefreshResponse) SetOldClientSecret(v string)

SetOldClientSecret sets OldClientSecret field to given value.

HasOldClientSecret

func (o *ClientSecretRefreshResponse) HasOldClientSecret() bool

HasOldClientSecret returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]