Skip to content

Latest commit

 

History

History
238 lines (129 loc) · 6.23 KB

SignatureConfig.md

File metadata and controls

238 lines (129 loc) · 6.23 KB

SignatureConfig

Properties

Name Type Description Notes
Algorithm Pointer to string [optional]
AllowedClockSkew Pointer to int64 [optional]
ErrorCode Pointer to int32 [optional]
ErrorMessage Pointer to string [optional]
Header Pointer to string [optional]
ParamName Pointer to string [optional]
Secret Pointer to string [optional]
UseParam Pointer to bool [optional]

Methods

NewSignatureConfig

func NewSignatureConfig() *SignatureConfig

NewSignatureConfig instantiates a new SignatureConfig 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

NewSignatureConfigWithDefaults

func NewSignatureConfigWithDefaults() *SignatureConfig

NewSignatureConfigWithDefaults instantiates a new SignatureConfig 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

GetAlgorithm

func (o *SignatureConfig) GetAlgorithm() string

GetAlgorithm returns the Algorithm field if non-nil, zero value otherwise.

GetAlgorithmOk

func (o *SignatureConfig) GetAlgorithmOk() (*string, bool)

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

SetAlgorithm

func (o *SignatureConfig) SetAlgorithm(v string)

SetAlgorithm sets Algorithm field to given value.

HasAlgorithm

func (o *SignatureConfig) HasAlgorithm() bool

HasAlgorithm returns a boolean if a field has been set.

GetAllowedClockSkew

func (o *SignatureConfig) GetAllowedClockSkew() int64

GetAllowedClockSkew returns the AllowedClockSkew field if non-nil, zero value otherwise.

GetAllowedClockSkewOk

func (o *SignatureConfig) GetAllowedClockSkewOk() (*int64, bool)

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

SetAllowedClockSkew

func (o *SignatureConfig) SetAllowedClockSkew(v int64)

SetAllowedClockSkew sets AllowedClockSkew field to given value.

HasAllowedClockSkew

func (o *SignatureConfig) HasAllowedClockSkew() bool

HasAllowedClockSkew returns a boolean if a field has been set.

GetErrorCode

func (o *SignatureConfig) GetErrorCode() int32

GetErrorCode returns the ErrorCode field if non-nil, zero value otherwise.

GetErrorCodeOk

func (o *SignatureConfig) GetErrorCodeOk() (*int32, bool)

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

SetErrorCode

func (o *SignatureConfig) SetErrorCode(v int32)

SetErrorCode sets ErrorCode field to given value.

HasErrorCode

func (o *SignatureConfig) HasErrorCode() bool

HasErrorCode returns a boolean if a field has been set.

GetErrorMessage

func (o *SignatureConfig) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field if non-nil, zero value otherwise.

GetErrorMessageOk

func (o *SignatureConfig) GetErrorMessageOk() (*string, bool)

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

SetErrorMessage

func (o *SignatureConfig) SetErrorMessage(v string)

SetErrorMessage sets ErrorMessage field to given value.

HasErrorMessage

func (o *SignatureConfig) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

GetHeader

func (o *SignatureConfig) GetHeader() string

GetHeader returns the Header field if non-nil, zero value otherwise.

GetHeaderOk

func (o *SignatureConfig) GetHeaderOk() (*string, bool)

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

SetHeader

func (o *SignatureConfig) SetHeader(v string)

SetHeader sets Header field to given value.

HasHeader

func (o *SignatureConfig) HasHeader() bool

HasHeader returns a boolean if a field has been set.

GetParamName

func (o *SignatureConfig) GetParamName() string

GetParamName returns the ParamName field if non-nil, zero value otherwise.

GetParamNameOk

func (o *SignatureConfig) GetParamNameOk() (*string, bool)

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

SetParamName

func (o *SignatureConfig) SetParamName(v string)

SetParamName sets ParamName field to given value.

HasParamName

func (o *SignatureConfig) HasParamName() bool

HasParamName returns a boolean if a field has been set.

GetSecret

func (o *SignatureConfig) GetSecret() string

GetSecret returns the Secret field if non-nil, zero value otherwise.

GetSecretOk

func (o *SignatureConfig) GetSecretOk() (*string, bool)

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

SetSecret

func (o *SignatureConfig) SetSecret(v string)

SetSecret sets Secret field to given value.

HasSecret

func (o *SignatureConfig) HasSecret() bool

HasSecret returns a boolean if a field has been set.

GetUseParam

func (o *SignatureConfig) GetUseParam() bool

GetUseParam returns the UseParam field if non-nil, zero value otherwise.

GetUseParamOk

func (o *SignatureConfig) GetUseParamOk() (*bool, bool)

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

SetUseParam

func (o *SignatureConfig) SetUseParam(v bool)

SetUseParam sets UseParam field to given value.

HasUseParam

func (o *SignatureConfig) HasUseParam() bool

HasUseParam returns a boolean if a field has been set.

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