feat: sdk migration in progress

This commit is contained in:
allanice001
2025-11-02 13:19:30 +00:00
commit 0d10d42442
492 changed files with 71067 additions and 0 deletions

View File

@@ -0,0 +1,82 @@
# UtilsErrorResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Code** | Pointer to **string** | A machine-readable error code, e.g. \"validation_error\" example: validation_error | [optional]
**Message** | Pointer to **string** | Human-readable message example: slug is required | [optional]
## Methods
### NewUtilsErrorResponse
`func NewUtilsErrorResponse() *UtilsErrorResponse`
NewUtilsErrorResponse instantiates a new UtilsErrorResponse 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
### NewUtilsErrorResponseWithDefaults
`func NewUtilsErrorResponseWithDefaults() *UtilsErrorResponse`
NewUtilsErrorResponseWithDefaults instantiates a new UtilsErrorResponse 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
### GetCode
`func (o *UtilsErrorResponse) GetCode() string`
GetCode returns the Code field if non-nil, zero value otherwise.
### GetCodeOk
`func (o *UtilsErrorResponse) GetCodeOk() (*string, bool)`
GetCodeOk returns a tuple with the Code field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCode
`func (o *UtilsErrorResponse) SetCode(v string)`
SetCode sets Code field to given value.
### HasCode
`func (o *UtilsErrorResponse) HasCode() bool`
HasCode returns a boolean if a field has been set.
### GetMessage
`func (o *UtilsErrorResponse) GetMessage() string`
GetMessage returns the Message field if non-nil, zero value otherwise.
### GetMessageOk
`func (o *UtilsErrorResponse) GetMessageOk() (*string, bool)`
GetMessageOk returns a tuple with the Message field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMessage
`func (o *UtilsErrorResponse) SetMessage(v string)`
SetMessage sets Message field to given value.
### HasMessage
`func (o *UtilsErrorResponse) HasMessage() bool`
HasMessage returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)