更新文档内容

This commit is contained in:
2023-09-26 16:20:01 +08:00
parent 73222eee28
commit d72897f080
415 changed files with 15785 additions and 17558 deletions

View File

@@ -4,8 +4,8 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Object** | Pointer to [**SchemaSearchRespObject**](SchemaSearchRespObject.md) | | [optional]
**ObjectType** | Pointer to **string** | object_type | [optional]
**Count** | Pointer to **int32** | | [optional]
**List** | Pointer to [**[]SchemaSearchResult**](SchemaSearchResult.md) | search response | [optional]
## Methods
@@ -26,55 +26,55 @@ NewSchemaSearchRespWithDefaults instantiates a new SchemaSearchResp 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
### GetObject
### GetCount
`func (o *SchemaSearchResp) GetObject() SchemaSearchRespObject`
`func (o *SchemaSearchResp) GetCount() int32`
GetObject returns the Object field if non-nil, zero value otherwise.
GetCount returns the Count field if non-nil, zero value otherwise.
### GetObjectOk
### GetCountOk
`func (o *SchemaSearchResp) GetObjectOk() (*SchemaSearchRespObject, bool)`
`func (o *SchemaSearchResp) GetCountOk() (*int32, bool)`
GetObjectOk returns a tuple with the Object field if it's non-nil, zero value otherwise
GetCountOk returns a tuple with the Count field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetObject
### SetCount
`func (o *SchemaSearchResp) SetObject(v SchemaSearchRespObject)`
`func (o *SchemaSearchResp) SetCount(v int32)`
SetObject sets Object field to given value.
SetCount sets Count field to given value.
### HasObject
### HasCount
`func (o *SchemaSearchResp) HasObject() bool`
`func (o *SchemaSearchResp) HasCount() bool`
HasObject returns a boolean if a field has been set.
HasCount returns a boolean if a field has been set.
### GetObjectType
### GetList
`func (o *SchemaSearchResp) GetObjectType() string`
`func (o *SchemaSearchResp) GetList() []SchemaSearchResult`
GetObjectType returns the ObjectType field if non-nil, zero value otherwise.
GetList returns the List field if non-nil, zero value otherwise.
### GetObjectTypeOk
### GetListOk
`func (o *SchemaSearchResp) GetObjectTypeOk() (*string, bool)`
`func (o *SchemaSearchResp) GetListOk() (*[]SchemaSearchResult, bool)`
GetObjectTypeOk returns a tuple with the ObjectType field if it's non-nil, zero value otherwise
GetListOk returns a tuple with the List field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetObjectType
### SetList
`func (o *SchemaSearchResp) SetObjectType(v string)`
`func (o *SchemaSearchResp) SetList(v []SchemaSearchResult)`
SetObjectType sets ObjectType field to given value.
SetList sets List field to given value.
### HasObjectType
### HasList
`func (o *SchemaSearchResp) HasObjectType() bool`
`func (o *SchemaSearchResp) HasList() bool`
HasObjectType returns a boolean if a field has been set.
HasList 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)