first version

This commit is contained in:
2023-08-18 10:03:31 +08:00
commit c3f06b456f
410 changed files with 94634 additions and 0 deletions

345
docs/ActivityApi.md Normal file
View File

@@ -0,0 +1,345 @@
# \ActivityApi
All URIs are relative to *http://127.0.0.1:80*
Method | HTTP request | Description
------------- | ------------- | -------------
[**AnswerApiV1FollowPost**](ActivityApi.md#AnswerApiV1FollowPost) | **Post** /answer/api/v1/follow | follow object or cancel follow operation
[**AnswerApiV1FollowTagsPut**](ActivityApi.md#AnswerApiV1FollowTagsPut) | **Put** /answer/api/v1/follow/tags | update user follow tags
[**AnswerApiV1PersonalVotePageGet**](ActivityApi.md#AnswerApiV1PersonalVotePageGet) | **Get** /answer/api/v1/personal/vote/page | user's votes
[**AnswerApiV1VoteDownPost**](ActivityApi.md#AnswerApiV1VoteDownPost) | **Post** /answer/api/v1/vote/down | vote down
[**AnswerApiV1VoteUpPost**](ActivityApi.md#AnswerApiV1VoteUpPost) | **Post** /answer/api/v1/vote/up | vote up
## AnswerApiV1FollowPost
> AnswerApiV1FollowPost200Response AnswerApiV1FollowPost(ctx).Data(data).Execute()
follow object or cancel follow operation
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaFollowReq("ObjectId_example") // SchemaFollowReq | follow
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.ActivityApi.AnswerApiV1FollowPost(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ActivityApi.AnswerApiV1FollowPost``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1FollowPost`: AnswerApiV1FollowPost200Response
fmt.Fprintf(os.Stdout, "Response from `ActivityApi.AnswerApiV1FollowPost`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1FollowPostRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaFollowReq**](SchemaFollowReq.md) | follow |
### Return type
[**AnswerApiV1FollowPost200Response**](AnswerApiV1FollowPost200Response.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1FollowTagsPut
> HandlerRespBody AnswerApiV1FollowTagsPut(ctx).Data(data).Execute()
update user follow tags
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaUpdateFollowTagsReq() // SchemaUpdateFollowTagsReq | follow
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.ActivityApi.AnswerApiV1FollowTagsPut(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ActivityApi.AnswerApiV1FollowTagsPut``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1FollowTagsPut`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `ActivityApi.AnswerApiV1FollowTagsPut`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1FollowTagsPutRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaUpdateFollowTagsReq**](SchemaUpdateFollowTagsReq.md) | follow |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1PersonalVotePageGet
> AnswerApiV1PersonalVotePageGet200Response AnswerApiV1PersonalVotePageGet(ctx).Page(page).PageSize(pageSize).Execute()
user's votes
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
page := int32(56) // int32 | page size (optional)
pageSize := int32(56) // int32 | page size (optional)
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.ActivityApi.AnswerApiV1PersonalVotePageGet(context.Background()).Page(page).PageSize(pageSize).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ActivityApi.AnswerApiV1PersonalVotePageGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1PersonalVotePageGet`: AnswerApiV1PersonalVotePageGet200Response
fmt.Fprintf(os.Stdout, "Response from `ActivityApi.AnswerApiV1PersonalVotePageGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1PersonalVotePageGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**page** | **int32** | page size |
**pageSize** | **int32** | page size |
### Return type
[**AnswerApiV1PersonalVotePageGet200Response**](AnswerApiV1PersonalVotePageGet200Response.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1VoteDownPost
> AnswerApiV1VoteDownPost200Response AnswerApiV1VoteDownPost(ctx).Data(data).Execute()
vote down
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaVoteReq("ObjectId_example") // SchemaVoteReq | vote
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.ActivityApi.AnswerApiV1VoteDownPost(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ActivityApi.AnswerApiV1VoteDownPost``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1VoteDownPost`: AnswerApiV1VoteDownPost200Response
fmt.Fprintf(os.Stdout, "Response from `ActivityApi.AnswerApiV1VoteDownPost`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1VoteDownPostRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaVoteReq**](SchemaVoteReq.md) | vote |
### Return type
[**AnswerApiV1VoteDownPost200Response**](AnswerApiV1VoteDownPost200Response.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1VoteUpPost
> AnswerApiV1VoteDownPost200Response AnswerApiV1VoteUpPost(ctx).Data(data).Execute()
vote up
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaVoteReq("ObjectId_example") // SchemaVoteReq | vote
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.ActivityApi.AnswerApiV1VoteUpPost(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ActivityApi.AnswerApiV1VoteUpPost``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1VoteUpPost`: AnswerApiV1VoteDownPost200Response
fmt.Fprintf(os.Stdout, "Response from `ActivityApi.AnswerApiV1VoteUpPost`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1VoteUpPostRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaVoteReq**](SchemaVoteReq.md) | vote |
### Return type
[**AnswerApiV1VoteDownPost200Response**](AnswerApiV1VoteDownPost200Response.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)

2249
docs/AdminApi.md Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,82 @@
# AnswerAdminApiRolesGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**[]SchemaGetRoleResp**](SchemaGetRoleResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerAdminApiRolesGet200Response
`func NewAnswerAdminApiRolesGet200Response() *AnswerAdminApiRolesGet200Response`
NewAnswerAdminApiRolesGet200Response instantiates a new AnswerAdminApiRolesGet200Response 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
### NewAnswerAdminApiRolesGet200ResponseWithDefaults
`func NewAnswerAdminApiRolesGet200ResponseWithDefaults() *AnswerAdminApiRolesGet200Response`
NewAnswerAdminApiRolesGet200ResponseWithDefaults instantiates a new AnswerAdminApiRolesGet200Response 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
### GetData
`func (o *AnswerAdminApiRolesGet200Response) GetData() []SchemaGetRoleResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerAdminApiRolesGet200Response) GetDataOk() (*[]SchemaGetRoleResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerAdminApiRolesGet200Response) SetData(v []SchemaGetRoleResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerAdminApiRolesGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerAdminApiRolesGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerAdminApiRolesGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerAdminApiRolesGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerAdminApiRolesGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerAdminApiSettingSmtpGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaGetSMTPConfigResp**](SchemaGetSMTPConfigResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerAdminApiSettingSmtpGet200Response
`func NewAnswerAdminApiSettingSmtpGet200Response() *AnswerAdminApiSettingSmtpGet200Response`
NewAnswerAdminApiSettingSmtpGet200Response instantiates a new AnswerAdminApiSettingSmtpGet200Response 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
### NewAnswerAdminApiSettingSmtpGet200ResponseWithDefaults
`func NewAnswerAdminApiSettingSmtpGet200ResponseWithDefaults() *AnswerAdminApiSettingSmtpGet200Response`
NewAnswerAdminApiSettingSmtpGet200ResponseWithDefaults instantiates a new AnswerAdminApiSettingSmtpGet200Response 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
### GetData
`func (o *AnswerAdminApiSettingSmtpGet200Response) GetData() SchemaGetSMTPConfigResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerAdminApiSettingSmtpGet200Response) GetDataOk() (*SchemaGetSMTPConfigResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerAdminApiSettingSmtpGet200Response) SetData(v SchemaGetSMTPConfigResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerAdminApiSettingSmtpGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerAdminApiSettingSmtpGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerAdminApiSettingSmtpGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerAdminApiSettingSmtpGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerAdminApiSettingSmtpGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerAdminApiSiteinfoBrandingGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaSiteBrandingResp**](SchemaSiteBrandingResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerAdminApiSiteinfoBrandingGet200Response
`func NewAnswerAdminApiSiteinfoBrandingGet200Response() *AnswerAdminApiSiteinfoBrandingGet200Response`
NewAnswerAdminApiSiteinfoBrandingGet200Response instantiates a new AnswerAdminApiSiteinfoBrandingGet200Response 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
### NewAnswerAdminApiSiteinfoBrandingGet200ResponseWithDefaults
`func NewAnswerAdminApiSiteinfoBrandingGet200ResponseWithDefaults() *AnswerAdminApiSiteinfoBrandingGet200Response`
NewAnswerAdminApiSiteinfoBrandingGet200ResponseWithDefaults instantiates a new AnswerAdminApiSiteinfoBrandingGet200Response 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
### GetData
`func (o *AnswerAdminApiSiteinfoBrandingGet200Response) GetData() SchemaSiteBrandingResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerAdminApiSiteinfoBrandingGet200Response) GetDataOk() (*SchemaSiteBrandingResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerAdminApiSiteinfoBrandingGet200Response) SetData(v SchemaSiteBrandingResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerAdminApiSiteinfoBrandingGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerAdminApiSiteinfoBrandingGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerAdminApiSiteinfoBrandingGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerAdminApiSiteinfoBrandingGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerAdminApiSiteinfoBrandingGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerAdminApiSiteinfoCustomCssHtmlGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaSiteCustomCssHTMLResp**](SchemaSiteCustomCssHTMLResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerAdminApiSiteinfoCustomCssHtmlGet200Response
`func NewAnswerAdminApiSiteinfoCustomCssHtmlGet200Response() *AnswerAdminApiSiteinfoCustomCssHtmlGet200Response`
NewAnswerAdminApiSiteinfoCustomCssHtmlGet200Response instantiates a new AnswerAdminApiSiteinfoCustomCssHtmlGet200Response 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
### NewAnswerAdminApiSiteinfoCustomCssHtmlGet200ResponseWithDefaults
`func NewAnswerAdminApiSiteinfoCustomCssHtmlGet200ResponseWithDefaults() *AnswerAdminApiSiteinfoCustomCssHtmlGet200Response`
NewAnswerAdminApiSiteinfoCustomCssHtmlGet200ResponseWithDefaults instantiates a new AnswerAdminApiSiteinfoCustomCssHtmlGet200Response 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
### GetData
`func (o *AnswerAdminApiSiteinfoCustomCssHtmlGet200Response) GetData() SchemaSiteCustomCssHTMLResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerAdminApiSiteinfoCustomCssHtmlGet200Response) GetDataOk() (*SchemaSiteCustomCssHTMLResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerAdminApiSiteinfoCustomCssHtmlGet200Response) SetData(v SchemaSiteCustomCssHTMLResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerAdminApiSiteinfoCustomCssHtmlGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerAdminApiSiteinfoCustomCssHtmlGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerAdminApiSiteinfoCustomCssHtmlGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerAdminApiSiteinfoCustomCssHtmlGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerAdminApiSiteinfoCustomCssHtmlGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerAdminApiSiteinfoGeneralGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaSiteGeneralResp**](SchemaSiteGeneralResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerAdminApiSiteinfoGeneralGet200Response
`func NewAnswerAdminApiSiteinfoGeneralGet200Response() *AnswerAdminApiSiteinfoGeneralGet200Response`
NewAnswerAdminApiSiteinfoGeneralGet200Response instantiates a new AnswerAdminApiSiteinfoGeneralGet200Response 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
### NewAnswerAdminApiSiteinfoGeneralGet200ResponseWithDefaults
`func NewAnswerAdminApiSiteinfoGeneralGet200ResponseWithDefaults() *AnswerAdminApiSiteinfoGeneralGet200Response`
NewAnswerAdminApiSiteinfoGeneralGet200ResponseWithDefaults instantiates a new AnswerAdminApiSiteinfoGeneralGet200Response 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
### GetData
`func (o *AnswerAdminApiSiteinfoGeneralGet200Response) GetData() SchemaSiteGeneralResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerAdminApiSiteinfoGeneralGet200Response) GetDataOk() (*SchemaSiteGeneralResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerAdminApiSiteinfoGeneralGet200Response) SetData(v SchemaSiteGeneralResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerAdminApiSiteinfoGeneralGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerAdminApiSiteinfoGeneralGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerAdminApiSiteinfoGeneralGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerAdminApiSiteinfoGeneralGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerAdminApiSiteinfoGeneralGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerAdminApiSiteinfoInterfaceGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaSiteInterfaceResp**](SchemaSiteInterfaceResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerAdminApiSiteinfoInterfaceGet200Response
`func NewAnswerAdminApiSiteinfoInterfaceGet200Response() *AnswerAdminApiSiteinfoInterfaceGet200Response`
NewAnswerAdminApiSiteinfoInterfaceGet200Response instantiates a new AnswerAdminApiSiteinfoInterfaceGet200Response 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
### NewAnswerAdminApiSiteinfoInterfaceGet200ResponseWithDefaults
`func NewAnswerAdminApiSiteinfoInterfaceGet200ResponseWithDefaults() *AnswerAdminApiSiteinfoInterfaceGet200Response`
NewAnswerAdminApiSiteinfoInterfaceGet200ResponseWithDefaults instantiates a new AnswerAdminApiSiteinfoInterfaceGet200Response 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
### GetData
`func (o *AnswerAdminApiSiteinfoInterfaceGet200Response) GetData() SchemaSiteInterfaceResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerAdminApiSiteinfoInterfaceGet200Response) GetDataOk() (*SchemaSiteInterfaceResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerAdminApiSiteinfoInterfaceGet200Response) SetData(v SchemaSiteInterfaceResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerAdminApiSiteinfoInterfaceGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerAdminApiSiteinfoInterfaceGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerAdminApiSiteinfoInterfaceGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerAdminApiSiteinfoInterfaceGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerAdminApiSiteinfoInterfaceGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerAdminApiSiteinfoLegalGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaSiteLegalResp**](SchemaSiteLegalResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerAdminApiSiteinfoLegalGet200Response
`func NewAnswerAdminApiSiteinfoLegalGet200Response() *AnswerAdminApiSiteinfoLegalGet200Response`
NewAnswerAdminApiSiteinfoLegalGet200Response instantiates a new AnswerAdminApiSiteinfoLegalGet200Response 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
### NewAnswerAdminApiSiteinfoLegalGet200ResponseWithDefaults
`func NewAnswerAdminApiSiteinfoLegalGet200ResponseWithDefaults() *AnswerAdminApiSiteinfoLegalGet200Response`
NewAnswerAdminApiSiteinfoLegalGet200ResponseWithDefaults instantiates a new AnswerAdminApiSiteinfoLegalGet200Response 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
### GetData
`func (o *AnswerAdminApiSiteinfoLegalGet200Response) GetData() SchemaSiteLegalResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerAdminApiSiteinfoLegalGet200Response) GetDataOk() (*SchemaSiteLegalResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerAdminApiSiteinfoLegalGet200Response) SetData(v SchemaSiteLegalResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerAdminApiSiteinfoLegalGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerAdminApiSiteinfoLegalGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerAdminApiSiteinfoLegalGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerAdminApiSiteinfoLegalGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerAdminApiSiteinfoLegalGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerAdminApiSiteinfoLoginGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaSiteLoginResp**](SchemaSiteLoginResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerAdminApiSiteinfoLoginGet200Response
`func NewAnswerAdminApiSiteinfoLoginGet200Response() *AnswerAdminApiSiteinfoLoginGet200Response`
NewAnswerAdminApiSiteinfoLoginGet200Response instantiates a new AnswerAdminApiSiteinfoLoginGet200Response 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
### NewAnswerAdminApiSiteinfoLoginGet200ResponseWithDefaults
`func NewAnswerAdminApiSiteinfoLoginGet200ResponseWithDefaults() *AnswerAdminApiSiteinfoLoginGet200Response`
NewAnswerAdminApiSiteinfoLoginGet200ResponseWithDefaults instantiates a new AnswerAdminApiSiteinfoLoginGet200Response 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
### GetData
`func (o *AnswerAdminApiSiteinfoLoginGet200Response) GetData() SchemaSiteLoginResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerAdminApiSiteinfoLoginGet200Response) GetDataOk() (*SchemaSiteLoginResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerAdminApiSiteinfoLoginGet200Response) SetData(v SchemaSiteLoginResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerAdminApiSiteinfoLoginGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerAdminApiSiteinfoLoginGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerAdminApiSiteinfoLoginGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerAdminApiSiteinfoLoginGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerAdminApiSiteinfoLoginGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerAdminApiSiteinfoSeoGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaSiteSeoResp**](SchemaSiteSeoResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerAdminApiSiteinfoSeoGet200Response
`func NewAnswerAdminApiSiteinfoSeoGet200Response() *AnswerAdminApiSiteinfoSeoGet200Response`
NewAnswerAdminApiSiteinfoSeoGet200Response instantiates a new AnswerAdminApiSiteinfoSeoGet200Response 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
### NewAnswerAdminApiSiteinfoSeoGet200ResponseWithDefaults
`func NewAnswerAdminApiSiteinfoSeoGet200ResponseWithDefaults() *AnswerAdminApiSiteinfoSeoGet200Response`
NewAnswerAdminApiSiteinfoSeoGet200ResponseWithDefaults instantiates a new AnswerAdminApiSiteinfoSeoGet200Response 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
### GetData
`func (o *AnswerAdminApiSiteinfoSeoGet200Response) GetData() SchemaSiteSeoResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerAdminApiSiteinfoSeoGet200Response) GetDataOk() (*SchemaSiteSeoResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerAdminApiSiteinfoSeoGet200Response) SetData(v SchemaSiteSeoResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerAdminApiSiteinfoSeoGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerAdminApiSiteinfoSeoGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerAdminApiSiteinfoSeoGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerAdminApiSiteinfoSeoGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerAdminApiSiteinfoSeoGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerAdminApiSiteinfoThemeGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaSiteThemeResp**](SchemaSiteThemeResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerAdminApiSiteinfoThemeGet200Response
`func NewAnswerAdminApiSiteinfoThemeGet200Response() *AnswerAdminApiSiteinfoThemeGet200Response`
NewAnswerAdminApiSiteinfoThemeGet200Response instantiates a new AnswerAdminApiSiteinfoThemeGet200Response 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
### NewAnswerAdminApiSiteinfoThemeGet200ResponseWithDefaults
`func NewAnswerAdminApiSiteinfoThemeGet200ResponseWithDefaults() *AnswerAdminApiSiteinfoThemeGet200Response`
NewAnswerAdminApiSiteinfoThemeGet200ResponseWithDefaults instantiates a new AnswerAdminApiSiteinfoThemeGet200Response 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
### GetData
`func (o *AnswerAdminApiSiteinfoThemeGet200Response) GetData() SchemaSiteThemeResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerAdminApiSiteinfoThemeGet200Response) GetDataOk() (*SchemaSiteThemeResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerAdminApiSiteinfoThemeGet200Response) SetData(v SchemaSiteThemeResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerAdminApiSiteinfoThemeGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerAdminApiSiteinfoThemeGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerAdminApiSiteinfoThemeGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerAdminApiSiteinfoThemeGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerAdminApiSiteinfoThemeGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerAdminApiSiteinfoWriteGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaSiteWriteResp**](SchemaSiteWriteResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerAdminApiSiteinfoWriteGet200Response
`func NewAnswerAdminApiSiteinfoWriteGet200Response() *AnswerAdminApiSiteinfoWriteGet200Response`
NewAnswerAdminApiSiteinfoWriteGet200Response instantiates a new AnswerAdminApiSiteinfoWriteGet200Response 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
### NewAnswerAdminApiSiteinfoWriteGet200ResponseWithDefaults
`func NewAnswerAdminApiSiteinfoWriteGet200ResponseWithDefaults() *AnswerAdminApiSiteinfoWriteGet200Response`
NewAnswerAdminApiSiteinfoWriteGet200ResponseWithDefaults instantiates a new AnswerAdminApiSiteinfoWriteGet200Response 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
### GetData
`func (o *AnswerAdminApiSiteinfoWriteGet200Response) GetData() SchemaSiteWriteResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerAdminApiSiteinfoWriteGet200Response) GetDataOk() (*SchemaSiteWriteResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerAdminApiSiteinfoWriteGet200Response) SetData(v SchemaSiteWriteResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerAdminApiSiteinfoWriteGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerAdminApiSiteinfoWriteGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerAdminApiSiteinfoWriteGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerAdminApiSiteinfoWriteGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerAdminApiSiteinfoWriteGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerAdminApiUsersPageGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**AnswerAdminApiUsersPageGet200ResponseData**](AnswerAdminApiUsersPageGet200ResponseData.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerAdminApiUsersPageGet200Response
`func NewAnswerAdminApiUsersPageGet200Response() *AnswerAdminApiUsersPageGet200Response`
NewAnswerAdminApiUsersPageGet200Response instantiates a new AnswerAdminApiUsersPageGet200Response 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
### NewAnswerAdminApiUsersPageGet200ResponseWithDefaults
`func NewAnswerAdminApiUsersPageGet200ResponseWithDefaults() *AnswerAdminApiUsersPageGet200Response`
NewAnswerAdminApiUsersPageGet200ResponseWithDefaults instantiates a new AnswerAdminApiUsersPageGet200Response 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
### GetData
`func (o *AnswerAdminApiUsersPageGet200Response) GetData() AnswerAdminApiUsersPageGet200ResponseData`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerAdminApiUsersPageGet200Response) GetDataOk() (*AnswerAdminApiUsersPageGet200ResponseData, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerAdminApiUsersPageGet200Response) SetData(v AnswerAdminApiUsersPageGet200ResponseData)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerAdminApiUsersPageGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerAdminApiUsersPageGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerAdminApiUsersPageGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerAdminApiUsersPageGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerAdminApiUsersPageGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,108 @@
# AnswerAdminApiUsersPageGet200ResponseData
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Count** | Pointer to **int32** | | [optional]
**List** | Pointer to **map[string]interface{}** | | [optional]
**Records** | Pointer to [**[]SchemaGetUserPageResp**](SchemaGetUserPageResp.md) | | [optional]
## Methods
### NewAnswerAdminApiUsersPageGet200ResponseData
`func NewAnswerAdminApiUsersPageGet200ResponseData() *AnswerAdminApiUsersPageGet200ResponseData`
NewAnswerAdminApiUsersPageGet200ResponseData instantiates a new AnswerAdminApiUsersPageGet200ResponseData 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
### NewAnswerAdminApiUsersPageGet200ResponseDataWithDefaults
`func NewAnswerAdminApiUsersPageGet200ResponseDataWithDefaults() *AnswerAdminApiUsersPageGet200ResponseData`
NewAnswerAdminApiUsersPageGet200ResponseDataWithDefaults instantiates a new AnswerAdminApiUsersPageGet200ResponseData 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
### GetCount
`func (o *AnswerAdminApiUsersPageGet200ResponseData) GetCount() int32`
GetCount returns the Count field if non-nil, zero value otherwise.
### GetCountOk
`func (o *AnswerAdminApiUsersPageGet200ResponseData) GetCountOk() (*int32, bool)`
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.
### SetCount
`func (o *AnswerAdminApiUsersPageGet200ResponseData) SetCount(v int32)`
SetCount sets Count field to given value.
### HasCount
`func (o *AnswerAdminApiUsersPageGet200ResponseData) HasCount() bool`
HasCount returns a boolean if a field has been set.
### GetList
`func (o *AnswerAdminApiUsersPageGet200ResponseData) GetList() map[string]interface{}`
GetList returns the List field if non-nil, zero value otherwise.
### GetListOk
`func (o *AnswerAdminApiUsersPageGet200ResponseData) GetListOk() (*map[string]interface{}, bool)`
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.
### SetList
`func (o *AnswerAdminApiUsersPageGet200ResponseData) SetList(v map[string]interface{})`
SetList sets List field to given value.
### HasList
`func (o *AnswerAdminApiUsersPageGet200ResponseData) HasList() bool`
HasList returns a boolean if a field has been set.
### GetRecords
`func (o *AnswerAdminApiUsersPageGet200ResponseData) GetRecords() []SchemaGetUserPageResp`
GetRecords returns the Records field if non-nil, zero value otherwise.
### GetRecordsOk
`func (o *AnswerAdminApiUsersPageGet200ResponseData) GetRecordsOk() (*[]SchemaGetUserPageResp, bool)`
GetRecordsOk returns a tuple with the Records field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRecords
`func (o *AnswerAdminApiUsersPageGet200ResponseData) SetRecords(v []SchemaGetUserPageResp)`
SetRecords sets Records field to given value.
### HasRecords
`func (o *AnswerAdminApiUsersPageGet200ResponseData) HasRecords() bool`
HasRecords 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)

View File

@@ -0,0 +1,56 @@
# AnswerAdminApiUsersPageGet200ResponseDataAllOf
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Records** | Pointer to [**[]SchemaGetUserPageResp**](SchemaGetUserPageResp.md) | | [optional]
## Methods
### NewAnswerAdminApiUsersPageGet200ResponseDataAllOf
`func NewAnswerAdminApiUsersPageGet200ResponseDataAllOf() *AnswerAdminApiUsersPageGet200ResponseDataAllOf`
NewAnswerAdminApiUsersPageGet200ResponseDataAllOf instantiates a new AnswerAdminApiUsersPageGet200ResponseDataAllOf 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
### NewAnswerAdminApiUsersPageGet200ResponseDataAllOfWithDefaults
`func NewAnswerAdminApiUsersPageGet200ResponseDataAllOfWithDefaults() *AnswerAdminApiUsersPageGet200ResponseDataAllOf`
NewAnswerAdminApiUsersPageGet200ResponseDataAllOfWithDefaults instantiates a new AnswerAdminApiUsersPageGet200ResponseDataAllOf 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
### GetRecords
`func (o *AnswerAdminApiUsersPageGet200ResponseDataAllOf) GetRecords() []SchemaGetUserPageResp`
GetRecords returns the Records field if non-nil, zero value otherwise.
### GetRecordsOk
`func (o *AnswerAdminApiUsersPageGet200ResponseDataAllOf) GetRecordsOk() (*[]SchemaGetUserPageResp, bool)`
GetRecordsOk returns a tuple with the Records field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRecords
`func (o *AnswerAdminApiUsersPageGet200ResponseDataAllOf) SetRecords(v []SchemaGetUserPageResp)`
SetRecords sets Records field to given value.
### HasRecords
`func (o *AnswerAdminApiUsersPageGet200ResponseDataAllOf) HasRecords() bool`
HasRecords 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1ActivityTimelineGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaGetObjectTimelineResp**](SchemaGetObjectTimelineResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1ActivityTimelineGet200Response
`func NewAnswerApiV1ActivityTimelineGet200Response() *AnswerApiV1ActivityTimelineGet200Response`
NewAnswerApiV1ActivityTimelineGet200Response instantiates a new AnswerApiV1ActivityTimelineGet200Response 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
### NewAnswerApiV1ActivityTimelineGet200ResponseWithDefaults
`func NewAnswerApiV1ActivityTimelineGet200ResponseWithDefaults() *AnswerApiV1ActivityTimelineGet200Response`
NewAnswerApiV1ActivityTimelineGet200ResponseWithDefaults instantiates a new AnswerApiV1ActivityTimelineGet200Response 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
### GetData
`func (o *AnswerApiV1ActivityTimelineGet200Response) GetData() SchemaGetObjectTimelineResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1ActivityTimelineGet200Response) GetDataOk() (*SchemaGetObjectTimelineResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1ActivityTimelineGet200Response) SetData(v SchemaGetObjectTimelineResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1ActivityTimelineGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1ActivityTimelineGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1ActivityTimelineGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1ActivityTimelineGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1ActivityTimelineGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1CollectionSwitchPost200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaCollectionSwitchResp**](SchemaCollectionSwitchResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1CollectionSwitchPost200Response
`func NewAnswerApiV1CollectionSwitchPost200Response() *AnswerApiV1CollectionSwitchPost200Response`
NewAnswerApiV1CollectionSwitchPost200Response instantiates a new AnswerApiV1CollectionSwitchPost200Response 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
### NewAnswerApiV1CollectionSwitchPost200ResponseWithDefaults
`func NewAnswerApiV1CollectionSwitchPost200ResponseWithDefaults() *AnswerApiV1CollectionSwitchPost200Response`
NewAnswerApiV1CollectionSwitchPost200ResponseWithDefaults instantiates a new AnswerApiV1CollectionSwitchPost200Response 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
### GetData
`func (o *AnswerApiV1CollectionSwitchPost200Response) GetData() SchemaCollectionSwitchResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1CollectionSwitchPost200Response) GetDataOk() (*SchemaCollectionSwitchResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1CollectionSwitchPost200Response) SetData(v SchemaCollectionSwitchResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1CollectionSwitchPost200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1CollectionSwitchPost200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1CollectionSwitchPost200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1CollectionSwitchPost200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1CollectionSwitchPost200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1CommentGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**AnswerApiV1CommentGet200ResponseData**](AnswerApiV1CommentGet200ResponseData.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1CommentGet200Response
`func NewAnswerApiV1CommentGet200Response() *AnswerApiV1CommentGet200Response`
NewAnswerApiV1CommentGet200Response instantiates a new AnswerApiV1CommentGet200Response 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
### NewAnswerApiV1CommentGet200ResponseWithDefaults
`func NewAnswerApiV1CommentGet200ResponseWithDefaults() *AnswerApiV1CommentGet200Response`
NewAnswerApiV1CommentGet200ResponseWithDefaults instantiates a new AnswerApiV1CommentGet200Response 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
### GetData
`func (o *AnswerApiV1CommentGet200Response) GetData() AnswerApiV1CommentGet200ResponseData`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1CommentGet200Response) GetDataOk() (*AnswerApiV1CommentGet200ResponseData, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1CommentGet200Response) SetData(v AnswerApiV1CommentGet200ResponseData)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1CommentGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1CommentGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1CommentGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1CommentGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1CommentGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1CommentGet200ResponseData
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Count** | Pointer to **int32** | | [optional]
**List** | Pointer to [**[]SchemaGetCommentResp**](SchemaGetCommentResp.md) | | [optional]
## Methods
### NewAnswerApiV1CommentGet200ResponseData
`func NewAnswerApiV1CommentGet200ResponseData() *AnswerApiV1CommentGet200ResponseData`
NewAnswerApiV1CommentGet200ResponseData instantiates a new AnswerApiV1CommentGet200ResponseData 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
### NewAnswerApiV1CommentGet200ResponseDataWithDefaults
`func NewAnswerApiV1CommentGet200ResponseDataWithDefaults() *AnswerApiV1CommentGet200ResponseData`
NewAnswerApiV1CommentGet200ResponseDataWithDefaults instantiates a new AnswerApiV1CommentGet200ResponseData 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
### GetCount
`func (o *AnswerApiV1CommentGet200ResponseData) GetCount() int32`
GetCount returns the Count field if non-nil, zero value otherwise.
### GetCountOk
`func (o *AnswerApiV1CommentGet200ResponseData) GetCountOk() (*int32, bool)`
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.
### SetCount
`func (o *AnswerApiV1CommentGet200ResponseData) SetCount(v int32)`
SetCount sets Count field to given value.
### HasCount
`func (o *AnswerApiV1CommentGet200ResponseData) HasCount() bool`
HasCount returns a boolean if a field has been set.
### GetList
`func (o *AnswerApiV1CommentGet200ResponseData) GetList() []SchemaGetCommentResp`
GetList returns the List field if non-nil, zero value otherwise.
### GetListOk
`func (o *AnswerApiV1CommentGet200ResponseData) GetListOk() (*[]SchemaGetCommentResp, bool)`
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.
### SetList
`func (o *AnswerApiV1CommentGet200ResponseData) SetList(v []SchemaGetCommentResp)`
SetList sets List field to given value.
### HasList
`func (o *AnswerApiV1CommentGet200ResponseData) HasList() bool`
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)

View File

@@ -0,0 +1,56 @@
# AnswerApiV1CommentGet200ResponseDataAllOf
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**List** | Pointer to [**[]SchemaGetCommentResp**](SchemaGetCommentResp.md) | | [optional]
## Methods
### NewAnswerApiV1CommentGet200ResponseDataAllOf
`func NewAnswerApiV1CommentGet200ResponseDataAllOf() *AnswerApiV1CommentGet200ResponseDataAllOf`
NewAnswerApiV1CommentGet200ResponseDataAllOf instantiates a new AnswerApiV1CommentGet200ResponseDataAllOf 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
### NewAnswerApiV1CommentGet200ResponseDataAllOfWithDefaults
`func NewAnswerApiV1CommentGet200ResponseDataAllOfWithDefaults() *AnswerApiV1CommentGet200ResponseDataAllOf`
NewAnswerApiV1CommentGet200ResponseDataAllOfWithDefaults instantiates a new AnswerApiV1CommentGet200ResponseDataAllOf 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
### GetList
`func (o *AnswerApiV1CommentGet200ResponseDataAllOf) GetList() []SchemaGetCommentResp`
GetList returns the List field if non-nil, zero value otherwise.
### GetListOk
`func (o *AnswerApiV1CommentGet200ResponseDataAllOf) GetListOk() (*[]SchemaGetCommentResp, bool)`
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.
### SetList
`func (o *AnswerApiV1CommentGet200ResponseDataAllOf) SetList(v []SchemaGetCommentResp)`
SetList sets List field to given value.
### HasList
`func (o *AnswerApiV1CommentGet200ResponseDataAllOf) HasList() bool`
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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1CommentPost200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaGetCommentResp**](SchemaGetCommentResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1CommentPost200Response
`func NewAnswerApiV1CommentPost200Response() *AnswerApiV1CommentPost200Response`
NewAnswerApiV1CommentPost200Response instantiates a new AnswerApiV1CommentPost200Response 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
### NewAnswerApiV1CommentPost200ResponseWithDefaults
`func NewAnswerApiV1CommentPost200ResponseWithDefaults() *AnswerApiV1CommentPost200Response`
NewAnswerApiV1CommentPost200ResponseWithDefaults instantiates a new AnswerApiV1CommentPost200Response 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
### GetData
`func (o *AnswerApiV1CommentPost200Response) GetData() SchemaGetCommentResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1CommentPost200Response) GetDataOk() (*SchemaGetCommentResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1CommentPost200Response) SetData(v SchemaGetCommentResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1CommentPost200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1CommentPost200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1CommentPost200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1CommentPost200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1CommentPost200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1FilePost200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to **string** | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1FilePost200Response
`func NewAnswerApiV1FilePost200Response() *AnswerApiV1FilePost200Response`
NewAnswerApiV1FilePost200Response instantiates a new AnswerApiV1FilePost200Response 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
### NewAnswerApiV1FilePost200ResponseWithDefaults
`func NewAnswerApiV1FilePost200ResponseWithDefaults() *AnswerApiV1FilePost200Response`
NewAnswerApiV1FilePost200ResponseWithDefaults instantiates a new AnswerApiV1FilePost200Response 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
### GetData
`func (o *AnswerApiV1FilePost200Response) GetData() string`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1FilePost200Response) GetDataOk() (*string, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1FilePost200Response) SetData(v string)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1FilePost200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1FilePost200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1FilePost200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1FilePost200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1FilePost200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1FollowPost200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaFollowResp**](SchemaFollowResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1FollowPost200Response
`func NewAnswerApiV1FollowPost200Response() *AnswerApiV1FollowPost200Response`
NewAnswerApiV1FollowPost200Response instantiates a new AnswerApiV1FollowPost200Response 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
### NewAnswerApiV1FollowPost200ResponseWithDefaults
`func NewAnswerApiV1FollowPost200ResponseWithDefaults() *AnswerApiV1FollowPost200Response`
NewAnswerApiV1FollowPost200ResponseWithDefaults instantiates a new AnswerApiV1FollowPost200Response 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
### GetData
`func (o *AnswerApiV1FollowPost200Response) GetData() SchemaFollowResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1FollowPost200Response) GetDataOk() (*SchemaFollowResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1FollowPost200Response) SetData(v SchemaFollowResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1FollowPost200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1FollowPost200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1FollowPost200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1FollowPost200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1FollowPost200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1PersonalCommentPageGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**AnswerApiV1PersonalCommentPageGet200ResponseData**](AnswerApiV1PersonalCommentPageGet200ResponseData.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1PersonalCommentPageGet200Response
`func NewAnswerApiV1PersonalCommentPageGet200Response() *AnswerApiV1PersonalCommentPageGet200Response`
NewAnswerApiV1PersonalCommentPageGet200Response instantiates a new AnswerApiV1PersonalCommentPageGet200Response 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
### NewAnswerApiV1PersonalCommentPageGet200ResponseWithDefaults
`func NewAnswerApiV1PersonalCommentPageGet200ResponseWithDefaults() *AnswerApiV1PersonalCommentPageGet200Response`
NewAnswerApiV1PersonalCommentPageGet200ResponseWithDefaults instantiates a new AnswerApiV1PersonalCommentPageGet200Response 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
### GetData
`func (o *AnswerApiV1PersonalCommentPageGet200Response) GetData() AnswerApiV1PersonalCommentPageGet200ResponseData`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1PersonalCommentPageGet200Response) GetDataOk() (*AnswerApiV1PersonalCommentPageGet200ResponseData, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1PersonalCommentPageGet200Response) SetData(v AnswerApiV1PersonalCommentPageGet200ResponseData)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1PersonalCommentPageGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1PersonalCommentPageGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1PersonalCommentPageGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1PersonalCommentPageGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1PersonalCommentPageGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1PersonalCommentPageGet200ResponseData
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Count** | Pointer to **int32** | | [optional]
**List** | Pointer to [**[]SchemaGetCommentPersonalWithPageResp**](SchemaGetCommentPersonalWithPageResp.md) | | [optional]
## Methods
### NewAnswerApiV1PersonalCommentPageGet200ResponseData
`func NewAnswerApiV1PersonalCommentPageGet200ResponseData() *AnswerApiV1PersonalCommentPageGet200ResponseData`
NewAnswerApiV1PersonalCommentPageGet200ResponseData instantiates a new AnswerApiV1PersonalCommentPageGet200ResponseData 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
### NewAnswerApiV1PersonalCommentPageGet200ResponseDataWithDefaults
`func NewAnswerApiV1PersonalCommentPageGet200ResponseDataWithDefaults() *AnswerApiV1PersonalCommentPageGet200ResponseData`
NewAnswerApiV1PersonalCommentPageGet200ResponseDataWithDefaults instantiates a new AnswerApiV1PersonalCommentPageGet200ResponseData 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
### GetCount
`func (o *AnswerApiV1PersonalCommentPageGet200ResponseData) GetCount() int32`
GetCount returns the Count field if non-nil, zero value otherwise.
### GetCountOk
`func (o *AnswerApiV1PersonalCommentPageGet200ResponseData) GetCountOk() (*int32, bool)`
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.
### SetCount
`func (o *AnswerApiV1PersonalCommentPageGet200ResponseData) SetCount(v int32)`
SetCount sets Count field to given value.
### HasCount
`func (o *AnswerApiV1PersonalCommentPageGet200ResponseData) HasCount() bool`
HasCount returns a boolean if a field has been set.
### GetList
`func (o *AnswerApiV1PersonalCommentPageGet200ResponseData) GetList() []SchemaGetCommentPersonalWithPageResp`
GetList returns the List field if non-nil, zero value otherwise.
### GetListOk
`func (o *AnswerApiV1PersonalCommentPageGet200ResponseData) GetListOk() (*[]SchemaGetCommentPersonalWithPageResp, bool)`
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.
### SetList
`func (o *AnswerApiV1PersonalCommentPageGet200ResponseData) SetList(v []SchemaGetCommentPersonalWithPageResp)`
SetList sets List field to given value.
### HasList
`func (o *AnswerApiV1PersonalCommentPageGet200ResponseData) HasList() bool`
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)

View File

@@ -0,0 +1,56 @@
# AnswerApiV1PersonalCommentPageGet200ResponseDataAllOf
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**List** | Pointer to [**[]SchemaGetCommentPersonalWithPageResp**](SchemaGetCommentPersonalWithPageResp.md) | | [optional]
## Methods
### NewAnswerApiV1PersonalCommentPageGet200ResponseDataAllOf
`func NewAnswerApiV1PersonalCommentPageGet200ResponseDataAllOf() *AnswerApiV1PersonalCommentPageGet200ResponseDataAllOf`
NewAnswerApiV1PersonalCommentPageGet200ResponseDataAllOf instantiates a new AnswerApiV1PersonalCommentPageGet200ResponseDataAllOf 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
### NewAnswerApiV1PersonalCommentPageGet200ResponseDataAllOfWithDefaults
`func NewAnswerApiV1PersonalCommentPageGet200ResponseDataAllOfWithDefaults() *AnswerApiV1PersonalCommentPageGet200ResponseDataAllOf`
NewAnswerApiV1PersonalCommentPageGet200ResponseDataAllOfWithDefaults instantiates a new AnswerApiV1PersonalCommentPageGet200ResponseDataAllOf 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
### GetList
`func (o *AnswerApiV1PersonalCommentPageGet200ResponseDataAllOf) GetList() []SchemaGetCommentPersonalWithPageResp`
GetList returns the List field if non-nil, zero value otherwise.
### GetListOk
`func (o *AnswerApiV1PersonalCommentPageGet200ResponseDataAllOf) GetListOk() (*[]SchemaGetCommentPersonalWithPageResp, bool)`
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.
### SetList
`func (o *AnswerApiV1PersonalCommentPageGet200ResponseDataAllOf) SetList(v []SchemaGetCommentPersonalWithPageResp)`
SetList sets List field to given value.
### HasList
`func (o *AnswerApiV1PersonalCommentPageGet200ResponseDataAllOf) HasList() bool`
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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1PersonalRankPageGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**AnswerApiV1PersonalRankPageGet200ResponseData**](AnswerApiV1PersonalRankPageGet200ResponseData.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1PersonalRankPageGet200Response
`func NewAnswerApiV1PersonalRankPageGet200Response() *AnswerApiV1PersonalRankPageGet200Response`
NewAnswerApiV1PersonalRankPageGet200Response instantiates a new AnswerApiV1PersonalRankPageGet200Response 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
### NewAnswerApiV1PersonalRankPageGet200ResponseWithDefaults
`func NewAnswerApiV1PersonalRankPageGet200ResponseWithDefaults() *AnswerApiV1PersonalRankPageGet200Response`
NewAnswerApiV1PersonalRankPageGet200ResponseWithDefaults instantiates a new AnswerApiV1PersonalRankPageGet200Response 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
### GetData
`func (o *AnswerApiV1PersonalRankPageGet200Response) GetData() AnswerApiV1PersonalRankPageGet200ResponseData`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1PersonalRankPageGet200Response) GetDataOk() (*AnswerApiV1PersonalRankPageGet200ResponseData, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1PersonalRankPageGet200Response) SetData(v AnswerApiV1PersonalRankPageGet200ResponseData)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1PersonalRankPageGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1PersonalRankPageGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1PersonalRankPageGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1PersonalRankPageGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1PersonalRankPageGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1PersonalRankPageGet200ResponseData
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Count** | Pointer to **int32** | | [optional]
**List** | Pointer to [**[]SchemaGetRankPersonalWithPageResp**](SchemaGetRankPersonalWithPageResp.md) | | [optional]
## Methods
### NewAnswerApiV1PersonalRankPageGet200ResponseData
`func NewAnswerApiV1PersonalRankPageGet200ResponseData() *AnswerApiV1PersonalRankPageGet200ResponseData`
NewAnswerApiV1PersonalRankPageGet200ResponseData instantiates a new AnswerApiV1PersonalRankPageGet200ResponseData 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
### NewAnswerApiV1PersonalRankPageGet200ResponseDataWithDefaults
`func NewAnswerApiV1PersonalRankPageGet200ResponseDataWithDefaults() *AnswerApiV1PersonalRankPageGet200ResponseData`
NewAnswerApiV1PersonalRankPageGet200ResponseDataWithDefaults instantiates a new AnswerApiV1PersonalRankPageGet200ResponseData 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
### GetCount
`func (o *AnswerApiV1PersonalRankPageGet200ResponseData) GetCount() int32`
GetCount returns the Count field if non-nil, zero value otherwise.
### GetCountOk
`func (o *AnswerApiV1PersonalRankPageGet200ResponseData) GetCountOk() (*int32, bool)`
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.
### SetCount
`func (o *AnswerApiV1PersonalRankPageGet200ResponseData) SetCount(v int32)`
SetCount sets Count field to given value.
### HasCount
`func (o *AnswerApiV1PersonalRankPageGet200ResponseData) HasCount() bool`
HasCount returns a boolean if a field has been set.
### GetList
`func (o *AnswerApiV1PersonalRankPageGet200ResponseData) GetList() []SchemaGetRankPersonalWithPageResp`
GetList returns the List field if non-nil, zero value otherwise.
### GetListOk
`func (o *AnswerApiV1PersonalRankPageGet200ResponseData) GetListOk() (*[]SchemaGetRankPersonalWithPageResp, bool)`
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.
### SetList
`func (o *AnswerApiV1PersonalRankPageGet200ResponseData) SetList(v []SchemaGetRankPersonalWithPageResp)`
SetList sets List field to given value.
### HasList
`func (o *AnswerApiV1PersonalRankPageGet200ResponseData) HasList() bool`
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)

View File

@@ -0,0 +1,56 @@
# AnswerApiV1PersonalRankPageGet200ResponseDataAllOf
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**List** | Pointer to [**[]SchemaGetRankPersonalWithPageResp**](SchemaGetRankPersonalWithPageResp.md) | | [optional]
## Methods
### NewAnswerApiV1PersonalRankPageGet200ResponseDataAllOf
`func NewAnswerApiV1PersonalRankPageGet200ResponseDataAllOf() *AnswerApiV1PersonalRankPageGet200ResponseDataAllOf`
NewAnswerApiV1PersonalRankPageGet200ResponseDataAllOf instantiates a new AnswerApiV1PersonalRankPageGet200ResponseDataAllOf 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
### NewAnswerApiV1PersonalRankPageGet200ResponseDataAllOfWithDefaults
`func NewAnswerApiV1PersonalRankPageGet200ResponseDataAllOfWithDefaults() *AnswerApiV1PersonalRankPageGet200ResponseDataAllOf`
NewAnswerApiV1PersonalRankPageGet200ResponseDataAllOfWithDefaults instantiates a new AnswerApiV1PersonalRankPageGet200ResponseDataAllOf 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
### GetList
`func (o *AnswerApiV1PersonalRankPageGet200ResponseDataAllOf) GetList() []SchemaGetRankPersonalWithPageResp`
GetList returns the List field if non-nil, zero value otherwise.
### GetListOk
`func (o *AnswerApiV1PersonalRankPageGet200ResponseDataAllOf) GetListOk() (*[]SchemaGetRankPersonalWithPageResp, bool)`
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.
### SetList
`func (o *AnswerApiV1PersonalRankPageGet200ResponseDataAllOf) SetList(v []SchemaGetRankPersonalWithPageResp)`
SetList sets List field to given value.
### HasList
`func (o *AnswerApiV1PersonalRankPageGet200ResponseDataAllOf) HasList() bool`
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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1PersonalUserInfoGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaGetOtherUserInfoResp**](SchemaGetOtherUserInfoResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1PersonalUserInfoGet200Response
`func NewAnswerApiV1PersonalUserInfoGet200Response() *AnswerApiV1PersonalUserInfoGet200Response`
NewAnswerApiV1PersonalUserInfoGet200Response instantiates a new AnswerApiV1PersonalUserInfoGet200Response 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
### NewAnswerApiV1PersonalUserInfoGet200ResponseWithDefaults
`func NewAnswerApiV1PersonalUserInfoGet200ResponseWithDefaults() *AnswerApiV1PersonalUserInfoGet200Response`
NewAnswerApiV1PersonalUserInfoGet200ResponseWithDefaults instantiates a new AnswerApiV1PersonalUserInfoGet200Response 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
### GetData
`func (o *AnswerApiV1PersonalUserInfoGet200Response) GetData() SchemaGetOtherUserInfoResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1PersonalUserInfoGet200Response) GetDataOk() (*SchemaGetOtherUserInfoResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1PersonalUserInfoGet200Response) SetData(v SchemaGetOtherUserInfoResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1PersonalUserInfoGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1PersonalUserInfoGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1PersonalUserInfoGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1PersonalUserInfoGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1PersonalUserInfoGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1PersonalVotePageGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**AnswerApiV1PersonalVotePageGet200ResponseData**](AnswerApiV1PersonalVotePageGet200ResponseData.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1PersonalVotePageGet200Response
`func NewAnswerApiV1PersonalVotePageGet200Response() *AnswerApiV1PersonalVotePageGet200Response`
NewAnswerApiV1PersonalVotePageGet200Response instantiates a new AnswerApiV1PersonalVotePageGet200Response 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
### NewAnswerApiV1PersonalVotePageGet200ResponseWithDefaults
`func NewAnswerApiV1PersonalVotePageGet200ResponseWithDefaults() *AnswerApiV1PersonalVotePageGet200Response`
NewAnswerApiV1PersonalVotePageGet200ResponseWithDefaults instantiates a new AnswerApiV1PersonalVotePageGet200Response 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
### GetData
`func (o *AnswerApiV1PersonalVotePageGet200Response) GetData() AnswerApiV1PersonalVotePageGet200ResponseData`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1PersonalVotePageGet200Response) GetDataOk() (*AnswerApiV1PersonalVotePageGet200ResponseData, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1PersonalVotePageGet200Response) SetData(v AnswerApiV1PersonalVotePageGet200ResponseData)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1PersonalVotePageGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1PersonalVotePageGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1PersonalVotePageGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1PersonalVotePageGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1PersonalVotePageGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1PersonalVotePageGet200ResponseData
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Count** | Pointer to **int32** | | [optional]
**List** | Pointer to [**[]SchemaGetVoteWithPageResp**](SchemaGetVoteWithPageResp.md) | | [optional]
## Methods
### NewAnswerApiV1PersonalVotePageGet200ResponseData
`func NewAnswerApiV1PersonalVotePageGet200ResponseData() *AnswerApiV1PersonalVotePageGet200ResponseData`
NewAnswerApiV1PersonalVotePageGet200ResponseData instantiates a new AnswerApiV1PersonalVotePageGet200ResponseData 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
### NewAnswerApiV1PersonalVotePageGet200ResponseDataWithDefaults
`func NewAnswerApiV1PersonalVotePageGet200ResponseDataWithDefaults() *AnswerApiV1PersonalVotePageGet200ResponseData`
NewAnswerApiV1PersonalVotePageGet200ResponseDataWithDefaults instantiates a new AnswerApiV1PersonalVotePageGet200ResponseData 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
### GetCount
`func (o *AnswerApiV1PersonalVotePageGet200ResponseData) GetCount() int32`
GetCount returns the Count field if non-nil, zero value otherwise.
### GetCountOk
`func (o *AnswerApiV1PersonalVotePageGet200ResponseData) GetCountOk() (*int32, bool)`
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.
### SetCount
`func (o *AnswerApiV1PersonalVotePageGet200ResponseData) SetCount(v int32)`
SetCount sets Count field to given value.
### HasCount
`func (o *AnswerApiV1PersonalVotePageGet200ResponseData) HasCount() bool`
HasCount returns a boolean if a field has been set.
### GetList
`func (o *AnswerApiV1PersonalVotePageGet200ResponseData) GetList() []SchemaGetVoteWithPageResp`
GetList returns the List field if non-nil, zero value otherwise.
### GetListOk
`func (o *AnswerApiV1PersonalVotePageGet200ResponseData) GetListOk() (*[]SchemaGetVoteWithPageResp, bool)`
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.
### SetList
`func (o *AnswerApiV1PersonalVotePageGet200ResponseData) SetList(v []SchemaGetVoteWithPageResp)`
SetList sets List field to given value.
### HasList
`func (o *AnswerApiV1PersonalVotePageGet200ResponseData) HasList() bool`
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)

View File

@@ -0,0 +1,56 @@
# AnswerApiV1PersonalVotePageGet200ResponseDataAllOf
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**List** | Pointer to [**[]SchemaGetVoteWithPageResp**](SchemaGetVoteWithPageResp.md) | | [optional]
## Methods
### NewAnswerApiV1PersonalVotePageGet200ResponseDataAllOf
`func NewAnswerApiV1PersonalVotePageGet200ResponseDataAllOf() *AnswerApiV1PersonalVotePageGet200ResponseDataAllOf`
NewAnswerApiV1PersonalVotePageGet200ResponseDataAllOf instantiates a new AnswerApiV1PersonalVotePageGet200ResponseDataAllOf 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
### NewAnswerApiV1PersonalVotePageGet200ResponseDataAllOfWithDefaults
`func NewAnswerApiV1PersonalVotePageGet200ResponseDataAllOfWithDefaults() *AnswerApiV1PersonalVotePageGet200ResponseDataAllOf`
NewAnswerApiV1PersonalVotePageGet200ResponseDataAllOfWithDefaults instantiates a new AnswerApiV1PersonalVotePageGet200ResponseDataAllOf 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
### GetList
`func (o *AnswerApiV1PersonalVotePageGet200ResponseDataAllOf) GetList() []SchemaGetVoteWithPageResp`
GetList returns the List field if non-nil, zero value otherwise.
### GetListOk
`func (o *AnswerApiV1PersonalVotePageGet200ResponseDataAllOf) GetListOk() (*[]SchemaGetVoteWithPageResp, bool)`
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.
### SetList
`func (o *AnswerApiV1PersonalVotePageGet200ResponseDataAllOf) SetList(v []SchemaGetVoteWithPageResp)`
SetList sets List field to given value.
### HasList
`func (o *AnswerApiV1PersonalVotePageGet200ResponseDataAllOf) HasList() bool`
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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1QuestionPageGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**AnswerApiV1QuestionPageGet200ResponseData**](AnswerApiV1QuestionPageGet200ResponseData.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1QuestionPageGet200Response
`func NewAnswerApiV1QuestionPageGet200Response() *AnswerApiV1QuestionPageGet200Response`
NewAnswerApiV1QuestionPageGet200Response instantiates a new AnswerApiV1QuestionPageGet200Response 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
### NewAnswerApiV1QuestionPageGet200ResponseWithDefaults
`func NewAnswerApiV1QuestionPageGet200ResponseWithDefaults() *AnswerApiV1QuestionPageGet200Response`
NewAnswerApiV1QuestionPageGet200ResponseWithDefaults instantiates a new AnswerApiV1QuestionPageGet200Response 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
### GetData
`func (o *AnswerApiV1QuestionPageGet200Response) GetData() AnswerApiV1QuestionPageGet200ResponseData`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1QuestionPageGet200Response) GetDataOk() (*AnswerApiV1QuestionPageGet200ResponseData, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1QuestionPageGet200Response) SetData(v AnswerApiV1QuestionPageGet200ResponseData)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1QuestionPageGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1QuestionPageGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1QuestionPageGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1QuestionPageGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1QuestionPageGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1QuestionPageGet200ResponseData
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Count** | Pointer to **int32** | | [optional]
**List** | Pointer to [**[]SchemaQuestionPageResp**](SchemaQuestionPageResp.md) | | [optional]
## Methods
### NewAnswerApiV1QuestionPageGet200ResponseData
`func NewAnswerApiV1QuestionPageGet200ResponseData() *AnswerApiV1QuestionPageGet200ResponseData`
NewAnswerApiV1QuestionPageGet200ResponseData instantiates a new AnswerApiV1QuestionPageGet200ResponseData 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
### NewAnswerApiV1QuestionPageGet200ResponseDataWithDefaults
`func NewAnswerApiV1QuestionPageGet200ResponseDataWithDefaults() *AnswerApiV1QuestionPageGet200ResponseData`
NewAnswerApiV1QuestionPageGet200ResponseDataWithDefaults instantiates a new AnswerApiV1QuestionPageGet200ResponseData 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
### GetCount
`func (o *AnswerApiV1QuestionPageGet200ResponseData) GetCount() int32`
GetCount returns the Count field if non-nil, zero value otherwise.
### GetCountOk
`func (o *AnswerApiV1QuestionPageGet200ResponseData) GetCountOk() (*int32, bool)`
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.
### SetCount
`func (o *AnswerApiV1QuestionPageGet200ResponseData) SetCount(v int32)`
SetCount sets Count field to given value.
### HasCount
`func (o *AnswerApiV1QuestionPageGet200ResponseData) HasCount() bool`
HasCount returns a boolean if a field has been set.
### GetList
`func (o *AnswerApiV1QuestionPageGet200ResponseData) GetList() []SchemaQuestionPageResp`
GetList returns the List field if non-nil, zero value otherwise.
### GetListOk
`func (o *AnswerApiV1QuestionPageGet200ResponseData) GetListOk() (*[]SchemaQuestionPageResp, bool)`
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.
### SetList
`func (o *AnswerApiV1QuestionPageGet200ResponseData) SetList(v []SchemaQuestionPageResp)`
SetList sets List field to given value.
### HasList
`func (o *AnswerApiV1QuestionPageGet200ResponseData) HasList() bool`
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)

View File

@@ -0,0 +1,56 @@
# AnswerApiV1QuestionPageGet200ResponseDataAllOf
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**List** | Pointer to [**[]SchemaQuestionPageResp**](SchemaQuestionPageResp.md) | | [optional]
## Methods
### NewAnswerApiV1QuestionPageGet200ResponseDataAllOf
`func NewAnswerApiV1QuestionPageGet200ResponseDataAllOf() *AnswerApiV1QuestionPageGet200ResponseDataAllOf`
NewAnswerApiV1QuestionPageGet200ResponseDataAllOf instantiates a new AnswerApiV1QuestionPageGet200ResponseDataAllOf 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
### NewAnswerApiV1QuestionPageGet200ResponseDataAllOfWithDefaults
`func NewAnswerApiV1QuestionPageGet200ResponseDataAllOfWithDefaults() *AnswerApiV1QuestionPageGet200ResponseDataAllOf`
NewAnswerApiV1QuestionPageGet200ResponseDataAllOfWithDefaults instantiates a new AnswerApiV1QuestionPageGet200ResponseDataAllOf 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
### GetList
`func (o *AnswerApiV1QuestionPageGet200ResponseDataAllOf) GetList() []SchemaQuestionPageResp`
GetList returns the List field if non-nil, zero value otherwise.
### GetListOk
`func (o *AnswerApiV1QuestionPageGet200ResponseDataAllOf) GetListOk() (*[]SchemaQuestionPageResp, bool)`
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.
### SetList
`func (o *AnswerApiV1QuestionPageGet200ResponseDataAllOf) SetList(v []SchemaQuestionPageResp)`
SetList sets List field to given value.
### HasList
`func (o *AnswerApiV1QuestionPageGet200ResponseDataAllOf) HasList() bool`
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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1QuestionTagsGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**[]SchemaGetTagResp**](SchemaGetTagResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1QuestionTagsGet200Response
`func NewAnswerApiV1QuestionTagsGet200Response() *AnswerApiV1QuestionTagsGet200Response`
NewAnswerApiV1QuestionTagsGet200Response instantiates a new AnswerApiV1QuestionTagsGet200Response 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
### NewAnswerApiV1QuestionTagsGet200ResponseWithDefaults
`func NewAnswerApiV1QuestionTagsGet200ResponseWithDefaults() *AnswerApiV1QuestionTagsGet200Response`
NewAnswerApiV1QuestionTagsGet200ResponseWithDefaults instantiates a new AnswerApiV1QuestionTagsGet200Response 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
### GetData
`func (o *AnswerApiV1QuestionTagsGet200Response) GetData() []SchemaGetTagResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1QuestionTagsGet200Response) GetDataOk() (*[]SchemaGetTagResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1QuestionTagsGet200Response) SetData(v []SchemaGetTagResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1QuestionTagsGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1QuestionTagsGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1QuestionTagsGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1QuestionTagsGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1QuestionTagsGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1ReportTypeListGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**[]SchemaGetReportTypeResp**](SchemaGetReportTypeResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1ReportTypeListGet200Response
`func NewAnswerApiV1ReportTypeListGet200Response() *AnswerApiV1ReportTypeListGet200Response`
NewAnswerApiV1ReportTypeListGet200Response instantiates a new AnswerApiV1ReportTypeListGet200Response 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
### NewAnswerApiV1ReportTypeListGet200ResponseWithDefaults
`func NewAnswerApiV1ReportTypeListGet200ResponseWithDefaults() *AnswerApiV1ReportTypeListGet200Response`
NewAnswerApiV1ReportTypeListGet200ResponseWithDefaults instantiates a new AnswerApiV1ReportTypeListGet200Response 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
### GetData
`func (o *AnswerApiV1ReportTypeListGet200Response) GetData() []SchemaGetReportTypeResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1ReportTypeListGet200Response) GetDataOk() (*[]SchemaGetReportTypeResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1ReportTypeListGet200Response) SetData(v []SchemaGetReportTypeResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1ReportTypeListGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1ReportTypeListGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1ReportTypeListGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1ReportTypeListGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1ReportTypeListGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1RevisionsGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**[]SchemaGetRevisionResp**](SchemaGetRevisionResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1RevisionsGet200Response
`func NewAnswerApiV1RevisionsGet200Response() *AnswerApiV1RevisionsGet200Response`
NewAnswerApiV1RevisionsGet200Response instantiates a new AnswerApiV1RevisionsGet200Response 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
### NewAnswerApiV1RevisionsGet200ResponseWithDefaults
`func NewAnswerApiV1RevisionsGet200ResponseWithDefaults() *AnswerApiV1RevisionsGet200Response`
NewAnswerApiV1RevisionsGet200ResponseWithDefaults instantiates a new AnswerApiV1RevisionsGet200Response 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
### GetData
`func (o *AnswerApiV1RevisionsGet200Response) GetData() []SchemaGetRevisionResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1RevisionsGet200Response) GetDataOk() (*[]SchemaGetRevisionResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1RevisionsGet200Response) SetData(v []SchemaGetRevisionResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1RevisionsGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1RevisionsGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1RevisionsGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1RevisionsGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1RevisionsGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1RevisionsUnreviewedGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**AnswerApiV1RevisionsUnreviewedGet200ResponseData**](AnswerApiV1RevisionsUnreviewedGet200ResponseData.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1RevisionsUnreviewedGet200Response
`func NewAnswerApiV1RevisionsUnreviewedGet200Response() *AnswerApiV1RevisionsUnreviewedGet200Response`
NewAnswerApiV1RevisionsUnreviewedGet200Response instantiates a new AnswerApiV1RevisionsUnreviewedGet200Response 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
### NewAnswerApiV1RevisionsUnreviewedGet200ResponseWithDefaults
`func NewAnswerApiV1RevisionsUnreviewedGet200ResponseWithDefaults() *AnswerApiV1RevisionsUnreviewedGet200Response`
NewAnswerApiV1RevisionsUnreviewedGet200ResponseWithDefaults instantiates a new AnswerApiV1RevisionsUnreviewedGet200Response 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
### GetData
`func (o *AnswerApiV1RevisionsUnreviewedGet200Response) GetData() AnswerApiV1RevisionsUnreviewedGet200ResponseData`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1RevisionsUnreviewedGet200Response) GetDataOk() (*AnswerApiV1RevisionsUnreviewedGet200ResponseData, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1RevisionsUnreviewedGet200Response) SetData(v AnswerApiV1RevisionsUnreviewedGet200ResponseData)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1RevisionsUnreviewedGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1RevisionsUnreviewedGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1RevisionsUnreviewedGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1RevisionsUnreviewedGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1RevisionsUnreviewedGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1RevisionsUnreviewedGet200ResponseData
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Count** | Pointer to **int32** | | [optional]
**List** | Pointer to [**[]SchemaGetUnreviewedRevisionResp**](SchemaGetUnreviewedRevisionResp.md) | | [optional]
## Methods
### NewAnswerApiV1RevisionsUnreviewedGet200ResponseData
`func NewAnswerApiV1RevisionsUnreviewedGet200ResponseData() *AnswerApiV1RevisionsUnreviewedGet200ResponseData`
NewAnswerApiV1RevisionsUnreviewedGet200ResponseData instantiates a new AnswerApiV1RevisionsUnreviewedGet200ResponseData 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
### NewAnswerApiV1RevisionsUnreviewedGet200ResponseDataWithDefaults
`func NewAnswerApiV1RevisionsUnreviewedGet200ResponseDataWithDefaults() *AnswerApiV1RevisionsUnreviewedGet200ResponseData`
NewAnswerApiV1RevisionsUnreviewedGet200ResponseDataWithDefaults instantiates a new AnswerApiV1RevisionsUnreviewedGet200ResponseData 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
### GetCount
`func (o *AnswerApiV1RevisionsUnreviewedGet200ResponseData) GetCount() int32`
GetCount returns the Count field if non-nil, zero value otherwise.
### GetCountOk
`func (o *AnswerApiV1RevisionsUnreviewedGet200ResponseData) GetCountOk() (*int32, bool)`
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.
### SetCount
`func (o *AnswerApiV1RevisionsUnreviewedGet200ResponseData) SetCount(v int32)`
SetCount sets Count field to given value.
### HasCount
`func (o *AnswerApiV1RevisionsUnreviewedGet200ResponseData) HasCount() bool`
HasCount returns a boolean if a field has been set.
### GetList
`func (o *AnswerApiV1RevisionsUnreviewedGet200ResponseData) GetList() []SchemaGetUnreviewedRevisionResp`
GetList returns the List field if non-nil, zero value otherwise.
### GetListOk
`func (o *AnswerApiV1RevisionsUnreviewedGet200ResponseData) GetListOk() (*[]SchemaGetUnreviewedRevisionResp, bool)`
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.
### SetList
`func (o *AnswerApiV1RevisionsUnreviewedGet200ResponseData) SetList(v []SchemaGetUnreviewedRevisionResp)`
SetList sets List field to given value.
### HasList
`func (o *AnswerApiV1RevisionsUnreviewedGet200ResponseData) HasList() bool`
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)

View File

@@ -0,0 +1,56 @@
# AnswerApiV1RevisionsUnreviewedGet200ResponseDataAllOf
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**List** | Pointer to [**[]SchemaGetUnreviewedRevisionResp**](SchemaGetUnreviewedRevisionResp.md) | | [optional]
## Methods
### NewAnswerApiV1RevisionsUnreviewedGet200ResponseDataAllOf
`func NewAnswerApiV1RevisionsUnreviewedGet200ResponseDataAllOf() *AnswerApiV1RevisionsUnreviewedGet200ResponseDataAllOf`
NewAnswerApiV1RevisionsUnreviewedGet200ResponseDataAllOf instantiates a new AnswerApiV1RevisionsUnreviewedGet200ResponseDataAllOf 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
### NewAnswerApiV1RevisionsUnreviewedGet200ResponseDataAllOfWithDefaults
`func NewAnswerApiV1RevisionsUnreviewedGet200ResponseDataAllOfWithDefaults() *AnswerApiV1RevisionsUnreviewedGet200ResponseDataAllOf`
NewAnswerApiV1RevisionsUnreviewedGet200ResponseDataAllOfWithDefaults instantiates a new AnswerApiV1RevisionsUnreviewedGet200ResponseDataAllOf 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
### GetList
`func (o *AnswerApiV1RevisionsUnreviewedGet200ResponseDataAllOf) GetList() []SchemaGetUnreviewedRevisionResp`
GetList returns the List field if non-nil, zero value otherwise.
### GetListOk
`func (o *AnswerApiV1RevisionsUnreviewedGet200ResponseDataAllOf) GetListOk() (*[]SchemaGetUnreviewedRevisionResp, bool)`
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.
### SetList
`func (o *AnswerApiV1RevisionsUnreviewedGet200ResponseDataAllOf) SetList(v []SchemaGetUnreviewedRevisionResp)`
SetList sets List field to given value.
### HasList
`func (o *AnswerApiV1RevisionsUnreviewedGet200ResponseDataAllOf) HasList() bool`
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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1SearchGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaSearchListResp**](SchemaSearchListResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1SearchGet200Response
`func NewAnswerApiV1SearchGet200Response() *AnswerApiV1SearchGet200Response`
NewAnswerApiV1SearchGet200Response instantiates a new AnswerApiV1SearchGet200Response 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
### NewAnswerApiV1SearchGet200ResponseWithDefaults
`func NewAnswerApiV1SearchGet200ResponseWithDefaults() *AnswerApiV1SearchGet200Response`
NewAnswerApiV1SearchGet200ResponseWithDefaults instantiates a new AnswerApiV1SearchGet200Response 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
### GetData
`func (o *AnswerApiV1SearchGet200Response) GetData() SchemaSearchListResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1SearchGet200Response) GetDataOk() (*SchemaSearchListResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1SearchGet200Response) SetData(v SchemaSearchListResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1SearchGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1SearchGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1SearchGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1SearchGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1SearchGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1SiteinfoGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaSiteInfoResp**](SchemaSiteInfoResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1SiteinfoGet200Response
`func NewAnswerApiV1SiteinfoGet200Response() *AnswerApiV1SiteinfoGet200Response`
NewAnswerApiV1SiteinfoGet200Response instantiates a new AnswerApiV1SiteinfoGet200Response 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
### NewAnswerApiV1SiteinfoGet200ResponseWithDefaults
`func NewAnswerApiV1SiteinfoGet200ResponseWithDefaults() *AnswerApiV1SiteinfoGet200Response`
NewAnswerApiV1SiteinfoGet200ResponseWithDefaults instantiates a new AnswerApiV1SiteinfoGet200Response 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
### GetData
`func (o *AnswerApiV1SiteinfoGet200Response) GetData() SchemaSiteInfoResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1SiteinfoGet200Response) GetDataOk() (*SchemaSiteInfoResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1SiteinfoGet200Response) SetData(v SchemaSiteInfoResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1SiteinfoGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1SiteinfoGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1SiteinfoGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1SiteinfoGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1SiteinfoGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1SiteinfoLegalGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaGetSiteLegalInfoResp**](SchemaGetSiteLegalInfoResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1SiteinfoLegalGet200Response
`func NewAnswerApiV1SiteinfoLegalGet200Response() *AnswerApiV1SiteinfoLegalGet200Response`
NewAnswerApiV1SiteinfoLegalGet200Response instantiates a new AnswerApiV1SiteinfoLegalGet200Response 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
### NewAnswerApiV1SiteinfoLegalGet200ResponseWithDefaults
`func NewAnswerApiV1SiteinfoLegalGet200ResponseWithDefaults() *AnswerApiV1SiteinfoLegalGet200Response`
NewAnswerApiV1SiteinfoLegalGet200ResponseWithDefaults instantiates a new AnswerApiV1SiteinfoLegalGet200Response 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
### GetData
`func (o *AnswerApiV1SiteinfoLegalGet200Response) GetData() SchemaGetSiteLegalInfoResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1SiteinfoLegalGet200Response) GetDataOk() (*SchemaGetSiteLegalInfoResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1SiteinfoLegalGet200Response) SetData(v SchemaGetSiteLegalInfoResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1SiteinfoLegalGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1SiteinfoLegalGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1SiteinfoLegalGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1SiteinfoLegalGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1SiteinfoLegalGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1TagGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaGetTagResp**](SchemaGetTagResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1TagGet200Response
`func NewAnswerApiV1TagGet200Response() *AnswerApiV1TagGet200Response`
NewAnswerApiV1TagGet200Response instantiates a new AnswerApiV1TagGet200Response 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
### NewAnswerApiV1TagGet200ResponseWithDefaults
`func NewAnswerApiV1TagGet200ResponseWithDefaults() *AnswerApiV1TagGet200Response`
NewAnswerApiV1TagGet200ResponseWithDefaults instantiates a new AnswerApiV1TagGet200Response 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
### GetData
`func (o *AnswerApiV1TagGet200Response) GetData() SchemaGetTagResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1TagGet200Response) GetDataOk() (*SchemaGetTagResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1TagGet200Response) SetData(v SchemaGetTagResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1TagGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1TagGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1TagGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1TagGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1TagGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1TagSynonymsGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaGetTagSynonymsResp**](SchemaGetTagSynonymsResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1TagSynonymsGet200Response
`func NewAnswerApiV1TagSynonymsGet200Response() *AnswerApiV1TagSynonymsGet200Response`
NewAnswerApiV1TagSynonymsGet200Response instantiates a new AnswerApiV1TagSynonymsGet200Response 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
### NewAnswerApiV1TagSynonymsGet200ResponseWithDefaults
`func NewAnswerApiV1TagSynonymsGet200ResponseWithDefaults() *AnswerApiV1TagSynonymsGet200Response`
NewAnswerApiV1TagSynonymsGet200ResponseWithDefaults instantiates a new AnswerApiV1TagSynonymsGet200Response 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
### GetData
`func (o *AnswerApiV1TagSynonymsGet200Response) GetData() SchemaGetTagSynonymsResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1TagSynonymsGet200Response) GetDataOk() (*SchemaGetTagSynonymsResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1TagSynonymsGet200Response) SetData(v SchemaGetTagSynonymsResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1TagSynonymsGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1TagSynonymsGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1TagSynonymsGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1TagSynonymsGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1TagSynonymsGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1TagsFollowingGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**[]SchemaGetFollowingTagsResp**](SchemaGetFollowingTagsResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1TagsFollowingGet200Response
`func NewAnswerApiV1TagsFollowingGet200Response() *AnswerApiV1TagsFollowingGet200Response`
NewAnswerApiV1TagsFollowingGet200Response instantiates a new AnswerApiV1TagsFollowingGet200Response 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
### NewAnswerApiV1TagsFollowingGet200ResponseWithDefaults
`func NewAnswerApiV1TagsFollowingGet200ResponseWithDefaults() *AnswerApiV1TagsFollowingGet200Response`
NewAnswerApiV1TagsFollowingGet200ResponseWithDefaults instantiates a new AnswerApiV1TagsFollowingGet200Response 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
### GetData
`func (o *AnswerApiV1TagsFollowingGet200Response) GetData() []SchemaGetFollowingTagsResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1TagsFollowingGet200Response) GetDataOk() (*[]SchemaGetFollowingTagsResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1TagsFollowingGet200Response) SetData(v []SchemaGetFollowingTagsResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1TagsFollowingGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1TagsFollowingGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1TagsFollowingGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1TagsFollowingGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1TagsFollowingGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1TagsPageGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**AnswerApiV1TagsPageGet200ResponseData**](AnswerApiV1TagsPageGet200ResponseData.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1TagsPageGet200Response
`func NewAnswerApiV1TagsPageGet200Response() *AnswerApiV1TagsPageGet200Response`
NewAnswerApiV1TagsPageGet200Response instantiates a new AnswerApiV1TagsPageGet200Response 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
### NewAnswerApiV1TagsPageGet200ResponseWithDefaults
`func NewAnswerApiV1TagsPageGet200ResponseWithDefaults() *AnswerApiV1TagsPageGet200Response`
NewAnswerApiV1TagsPageGet200ResponseWithDefaults instantiates a new AnswerApiV1TagsPageGet200Response 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
### GetData
`func (o *AnswerApiV1TagsPageGet200Response) GetData() AnswerApiV1TagsPageGet200ResponseData`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1TagsPageGet200Response) GetDataOk() (*AnswerApiV1TagsPageGet200ResponseData, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1TagsPageGet200Response) SetData(v AnswerApiV1TagsPageGet200ResponseData)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1TagsPageGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1TagsPageGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1TagsPageGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1TagsPageGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1TagsPageGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1TagsPageGet200ResponseData
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Count** | Pointer to **int32** | | [optional]
**List** | Pointer to [**[]SchemaGetTagPageResp**](SchemaGetTagPageResp.md) | | [optional]
## Methods
### NewAnswerApiV1TagsPageGet200ResponseData
`func NewAnswerApiV1TagsPageGet200ResponseData() *AnswerApiV1TagsPageGet200ResponseData`
NewAnswerApiV1TagsPageGet200ResponseData instantiates a new AnswerApiV1TagsPageGet200ResponseData 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
### NewAnswerApiV1TagsPageGet200ResponseDataWithDefaults
`func NewAnswerApiV1TagsPageGet200ResponseDataWithDefaults() *AnswerApiV1TagsPageGet200ResponseData`
NewAnswerApiV1TagsPageGet200ResponseDataWithDefaults instantiates a new AnswerApiV1TagsPageGet200ResponseData 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
### GetCount
`func (o *AnswerApiV1TagsPageGet200ResponseData) GetCount() int32`
GetCount returns the Count field if non-nil, zero value otherwise.
### GetCountOk
`func (o *AnswerApiV1TagsPageGet200ResponseData) GetCountOk() (*int32, bool)`
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.
### SetCount
`func (o *AnswerApiV1TagsPageGet200ResponseData) SetCount(v int32)`
SetCount sets Count field to given value.
### HasCount
`func (o *AnswerApiV1TagsPageGet200ResponseData) HasCount() bool`
HasCount returns a boolean if a field has been set.
### GetList
`func (o *AnswerApiV1TagsPageGet200ResponseData) GetList() []SchemaGetTagPageResp`
GetList returns the List field if non-nil, zero value otherwise.
### GetListOk
`func (o *AnswerApiV1TagsPageGet200ResponseData) GetListOk() (*[]SchemaGetTagPageResp, bool)`
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.
### SetList
`func (o *AnswerApiV1TagsPageGet200ResponseData) SetList(v []SchemaGetTagPageResp)`
SetList sets List field to given value.
### HasList
`func (o *AnswerApiV1TagsPageGet200ResponseData) HasList() bool`
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)

View File

@@ -0,0 +1,56 @@
# AnswerApiV1TagsPageGet200ResponseDataAllOf
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**List** | Pointer to [**[]SchemaGetTagPageResp**](SchemaGetTagPageResp.md) | | [optional]
## Methods
### NewAnswerApiV1TagsPageGet200ResponseDataAllOf
`func NewAnswerApiV1TagsPageGet200ResponseDataAllOf() *AnswerApiV1TagsPageGet200ResponseDataAllOf`
NewAnswerApiV1TagsPageGet200ResponseDataAllOf instantiates a new AnswerApiV1TagsPageGet200ResponseDataAllOf 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
### NewAnswerApiV1TagsPageGet200ResponseDataAllOfWithDefaults
`func NewAnswerApiV1TagsPageGet200ResponseDataAllOfWithDefaults() *AnswerApiV1TagsPageGet200ResponseDataAllOf`
NewAnswerApiV1TagsPageGet200ResponseDataAllOfWithDefaults instantiates a new AnswerApiV1TagsPageGet200ResponseDataAllOf 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
### GetList
`func (o *AnswerApiV1TagsPageGet200ResponseDataAllOf) GetList() []SchemaGetTagPageResp`
GetList returns the List field if non-nil, zero value otherwise.
### GetListOk
`func (o *AnswerApiV1TagsPageGet200ResponseDataAllOf) GetListOk() (*[]SchemaGetTagPageResp, bool)`
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.
### SetList
`func (o *AnswerApiV1TagsPageGet200ResponseDataAllOf) SetList(v []SchemaGetTagPageResp)`
SetList sets List field to given value.
### HasList
`func (o *AnswerApiV1TagsPageGet200ResponseDataAllOf) HasList() bool`
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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1UserActionRecordGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaActionRecordResp**](SchemaActionRecordResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1UserActionRecordGet200Response
`func NewAnswerApiV1UserActionRecordGet200Response() *AnswerApiV1UserActionRecordGet200Response`
NewAnswerApiV1UserActionRecordGet200Response instantiates a new AnswerApiV1UserActionRecordGet200Response 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
### NewAnswerApiV1UserActionRecordGet200ResponseWithDefaults
`func NewAnswerApiV1UserActionRecordGet200ResponseWithDefaults() *AnswerApiV1UserActionRecordGet200Response`
NewAnswerApiV1UserActionRecordGet200ResponseWithDefaults instantiates a new AnswerApiV1UserActionRecordGet200Response 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
### GetData
`func (o *AnswerApiV1UserActionRecordGet200Response) GetData() SchemaActionRecordResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1UserActionRecordGet200Response) GetDataOk() (*SchemaActionRecordResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1UserActionRecordGet200Response) SetData(v SchemaActionRecordResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1UserActionRecordGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1UserActionRecordGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1UserActionRecordGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1UserActionRecordGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1UserActionRecordGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1UserEmailVerificationPost200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaGetUserResp**](SchemaGetUserResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1UserEmailVerificationPost200Response
`func NewAnswerApiV1UserEmailVerificationPost200Response() *AnswerApiV1UserEmailVerificationPost200Response`
NewAnswerApiV1UserEmailVerificationPost200Response instantiates a new AnswerApiV1UserEmailVerificationPost200Response 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
### NewAnswerApiV1UserEmailVerificationPost200ResponseWithDefaults
`func NewAnswerApiV1UserEmailVerificationPost200ResponseWithDefaults() *AnswerApiV1UserEmailVerificationPost200Response`
NewAnswerApiV1UserEmailVerificationPost200ResponseWithDefaults instantiates a new AnswerApiV1UserEmailVerificationPost200Response 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
### GetData
`func (o *AnswerApiV1UserEmailVerificationPost200Response) GetData() SchemaGetUserResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1UserEmailVerificationPost200Response) GetDataOk() (*SchemaGetUserResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1UserEmailVerificationPost200Response) SetData(v SchemaGetUserResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1UserEmailVerificationPost200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1UserEmailVerificationPost200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1UserEmailVerificationPost200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1UserEmailVerificationPost200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1UserEmailVerificationPost200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1UserInfoGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaGetUserToSetShowResp**](SchemaGetUserToSetShowResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1UserInfoGet200Response
`func NewAnswerApiV1UserInfoGet200Response() *AnswerApiV1UserInfoGet200Response`
NewAnswerApiV1UserInfoGet200Response instantiates a new AnswerApiV1UserInfoGet200Response 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
### NewAnswerApiV1UserInfoGet200ResponseWithDefaults
`func NewAnswerApiV1UserInfoGet200ResponseWithDefaults() *AnswerApiV1UserInfoGet200Response`
NewAnswerApiV1UserInfoGet200ResponseWithDefaults instantiates a new AnswerApiV1UserInfoGet200Response 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
### GetData
`func (o *AnswerApiV1UserInfoGet200Response) GetData() SchemaGetUserToSetShowResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1UserInfoGet200Response) GetDataOk() (*SchemaGetUserToSetShowResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1UserInfoGet200Response) SetData(v SchemaGetUserToSetShowResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1UserInfoGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1UserInfoGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1UserInfoGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1UserInfoGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1UserInfoGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1UserNoticeSetPost200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaUserNoticeSetResp**](SchemaUserNoticeSetResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1UserNoticeSetPost200Response
`func NewAnswerApiV1UserNoticeSetPost200Response() *AnswerApiV1UserNoticeSetPost200Response`
NewAnswerApiV1UserNoticeSetPost200Response instantiates a new AnswerApiV1UserNoticeSetPost200Response 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
### NewAnswerApiV1UserNoticeSetPost200ResponseWithDefaults
`func NewAnswerApiV1UserNoticeSetPost200ResponseWithDefaults() *AnswerApiV1UserNoticeSetPost200Response`
NewAnswerApiV1UserNoticeSetPost200ResponseWithDefaults instantiates a new AnswerApiV1UserNoticeSetPost200Response 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
### GetData
`func (o *AnswerApiV1UserNoticeSetPost200Response) GetData() SchemaUserNoticeSetResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1UserNoticeSetPost200Response) GetDataOk() (*SchemaUserNoticeSetResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1UserNoticeSetPost200Response) SetData(v SchemaUserNoticeSetResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1UserNoticeSetPost200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1UserNoticeSetPost200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1UserNoticeSetPost200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1UserNoticeSetPost200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1UserNoticeSetPost200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1UserRankingGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaUserRankingResp**](SchemaUserRankingResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1UserRankingGet200Response
`func NewAnswerApiV1UserRankingGet200Response() *AnswerApiV1UserRankingGet200Response`
NewAnswerApiV1UserRankingGet200Response instantiates a new AnswerApiV1UserRankingGet200Response 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
### NewAnswerApiV1UserRankingGet200ResponseWithDefaults
`func NewAnswerApiV1UserRankingGet200ResponseWithDefaults() *AnswerApiV1UserRankingGet200Response`
NewAnswerApiV1UserRankingGet200ResponseWithDefaults instantiates a new AnswerApiV1UserRankingGet200Response 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
### GetData
`func (o *AnswerApiV1UserRankingGet200Response) GetData() SchemaUserRankingResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1UserRankingGet200Response) GetDataOk() (*SchemaUserRankingResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1UserRankingGet200Response) SetData(v SchemaUserRankingResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1UserRankingGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1UserRankingGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1UserRankingGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1UserRankingGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1UserRankingGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# AnswerApiV1VoteDownPost200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**SchemaVoteResp**](SchemaVoteResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewAnswerApiV1VoteDownPost200Response
`func NewAnswerApiV1VoteDownPost200Response() *AnswerApiV1VoteDownPost200Response`
NewAnswerApiV1VoteDownPost200Response instantiates a new AnswerApiV1VoteDownPost200Response 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
### NewAnswerApiV1VoteDownPost200ResponseWithDefaults
`func NewAnswerApiV1VoteDownPost200ResponseWithDefaults() *AnswerApiV1VoteDownPost200Response`
NewAnswerApiV1VoteDownPost200ResponseWithDefaults instantiates a new AnswerApiV1VoteDownPost200Response 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
### GetData
`func (o *AnswerApiV1VoteDownPost200Response) GetData() SchemaVoteResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *AnswerApiV1VoteDownPost200Response) GetDataOk() (*SchemaVoteResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *AnswerApiV1VoteDownPost200Response) SetData(v SchemaVoteResp)`
SetData sets Data field to given value.
### HasData
`func (o *AnswerApiV1VoteDownPost200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *AnswerApiV1VoteDownPost200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *AnswerApiV1VoteDownPost200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *AnswerApiV1VoteDownPost200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *AnswerApiV1VoteDownPost200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

489
docs/ApiAnswerApi.md Normal file
View File

@@ -0,0 +1,489 @@
# \ApiAnswerApi
All URIs are relative to *http://127.0.0.1:80*
Method | HTTP request | Description
------------- | ------------- | -------------
[**AnswerApiV1AnswerAcceptancePost**](ApiAnswerApi.md#AnswerApiV1AnswerAcceptancePost) | **Post** /answer/api/v1/answer/acceptance | Accepted
[**AnswerApiV1AnswerDelete**](ApiAnswerApi.md#AnswerApiV1AnswerDelete) | **Delete** /answer/api/v1/answer | delete answer
[**AnswerApiV1AnswerInfoGet**](ApiAnswerApi.md#AnswerApiV1AnswerInfoGet) | **Get** /answer/api/v1/answer/info | Get Answer
[**AnswerApiV1AnswerPageGet**](ApiAnswerApi.md#AnswerApiV1AnswerPageGet) | **Get** /answer/api/v1/answer/page | AnswerList
[**AnswerApiV1AnswerPost**](ApiAnswerApi.md#AnswerApiV1AnswerPost) | **Post** /answer/api/v1/answer | Insert Answer
[**AnswerApiV1AnswerPut**](ApiAnswerApi.md#AnswerApiV1AnswerPut) | **Put** /answer/api/v1/answer | Update Answer
[**AnswerApiV1PersonalAnswerPageGet**](ApiAnswerApi.md#AnswerApiV1PersonalAnswerPageGet) | **Get** /answer/api/v1/personal/answer/page | UserAnswerList
## AnswerApiV1AnswerAcceptancePost
> string AnswerApiV1AnswerAcceptancePost(ctx).Data(data).Execute()
Accepted
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaAnswerAcceptedReq() // SchemaAnswerAcceptedReq | AnswerAcceptedReq
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.ApiAnswerApi.AnswerApiV1AnswerAcceptancePost(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ApiAnswerApi.AnswerApiV1AnswerAcceptancePost``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1AnswerAcceptancePost`: string
fmt.Fprintf(os.Stdout, "Response from `ApiAnswerApi.AnswerApiV1AnswerAcceptancePost`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1AnswerAcceptancePostRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaAnswerAcceptedReq**](SchemaAnswerAcceptedReq.md) | AnswerAcceptedReq |
### Return type
**string**
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1AnswerDelete
> HandlerRespBody AnswerApiV1AnswerDelete(ctx).Data(data).Execute()
delete answer
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaRemoveAnswerReq("Id_example") // SchemaRemoveAnswerReq | answer
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.ApiAnswerApi.AnswerApiV1AnswerDelete(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ApiAnswerApi.AnswerApiV1AnswerDelete``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1AnswerDelete`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `ApiAnswerApi.AnswerApiV1AnswerDelete`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1AnswerDeleteRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaRemoveAnswerReq**](SchemaRemoveAnswerReq.md) | answer |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1AnswerInfoGet
> string AnswerApiV1AnswerInfoGet(ctx).Id(id).Execute()
Get Answer
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
id := "id_example" // string | Answer TagID (default to "1")
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.ApiAnswerApi.AnswerApiV1AnswerInfoGet(context.Background()).Id(id).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ApiAnswerApi.AnswerApiV1AnswerInfoGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1AnswerInfoGet`: string
fmt.Fprintf(os.Stdout, "Response from `ApiAnswerApi.AnswerApiV1AnswerInfoGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1AnswerInfoGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**id** | **string** | Answer TagID | [default to "1"]
### Return type
**string**
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1AnswerPageGet
> string AnswerApiV1AnswerPageGet(ctx).QuestionId(questionId).Order(order).Page(page).PageSize(pageSize).Execute()
AnswerList
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
questionId := "questionId_example" // string | question_id
order := "order_example" // string | order
page := "page_example" // string | page
pageSize := "pageSize_example" // string | page_size
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.ApiAnswerApi.AnswerApiV1AnswerPageGet(context.Background()).QuestionId(questionId).Order(order).Page(page).PageSize(pageSize).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ApiAnswerApi.AnswerApiV1AnswerPageGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1AnswerPageGet`: string
fmt.Fprintf(os.Stdout, "Response from `ApiAnswerApi.AnswerApiV1AnswerPageGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1AnswerPageGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**questionId** | **string** | question_id |
**order** | **string** | order |
**page** | **string** | page |
**pageSize** | **string** | page_size |
### Return type
**string**
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1AnswerPost
> string AnswerApiV1AnswerPost(ctx).Data(data).Execute()
Insert Answer
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaAnswerAddReq("Content_example") // SchemaAnswerAddReq | AnswerAddReq
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.ApiAnswerApi.AnswerApiV1AnswerPost(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ApiAnswerApi.AnswerApiV1AnswerPost``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1AnswerPost`: string
fmt.Fprintf(os.Stdout, "Response from `ApiAnswerApi.AnswerApiV1AnswerPost`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1AnswerPostRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaAnswerAddReq**](SchemaAnswerAddReq.md) | AnswerAddReq |
### Return type
**string**
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1AnswerPut
> string AnswerApiV1AnswerPut(ctx).Data(data).Execute()
Update Answer
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaAnswerUpdateReq("Content_example") // SchemaAnswerUpdateReq | AnswerUpdateReq
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.ApiAnswerApi.AnswerApiV1AnswerPut(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ApiAnswerApi.AnswerApiV1AnswerPut``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1AnswerPut`: string
fmt.Fprintf(os.Stdout, "Response from `ApiAnswerApi.AnswerApiV1AnswerPut`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1AnswerPutRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaAnswerUpdateReq**](SchemaAnswerUpdateReq.md) | AnswerUpdateReq |
### Return type
**string**
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1PersonalAnswerPageGet
> HandlerRespBody AnswerApiV1PersonalAnswerPageGet(ctx).Username(username).Order(order).Page(page).Pagesize(pagesize).Execute()
UserAnswerList
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
username := "username_example" // string | username (default to "string")
order := "order_example" // string | order
page := "page_example" // string | page (default to "0")
pagesize := "pagesize_example" // string | pagesize (default to "20")
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.ApiAnswerApi.AnswerApiV1PersonalAnswerPageGet(context.Background()).Username(username).Order(order).Page(page).Pagesize(pagesize).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ApiAnswerApi.AnswerApiV1PersonalAnswerPageGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1PersonalAnswerPageGet`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `ApiAnswerApi.AnswerApiV1PersonalAnswerPageGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1PersonalAnswerPageGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**username** | **string** | username | [default to "string"]
**order** | **string** | order |
**page** | **string** | page | [default to "0"]
**pagesize** | **string** | pagesize | [default to "20"]
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)

144
docs/CollectionApi.md Normal file
View File

@@ -0,0 +1,144 @@
# \CollectionApi
All URIs are relative to *http://127.0.0.1:80*
Method | HTTP request | Description
------------- | ------------- | -------------
[**AnswerApiV1CollectionSwitchPost**](CollectionApi.md#AnswerApiV1CollectionSwitchPost) | **Post** /answer/api/v1/collection/switch | add collection
[**AnswerApiV1PersonalCollectionPageGet**](CollectionApi.md#AnswerApiV1PersonalCollectionPageGet) | **Get** /answer/api/v1/personal/collection/page | UserCollectionList
## AnswerApiV1CollectionSwitchPost
> AnswerApiV1CollectionSwitchPost200Response AnswerApiV1CollectionSwitchPost(ctx).Data(data).Execute()
add collection
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaCollectionSwitchReq("GroupId_example", "ObjectId_example") // SchemaCollectionSwitchReq | collection
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.CollectionApi.AnswerApiV1CollectionSwitchPost(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `CollectionApi.AnswerApiV1CollectionSwitchPost``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1CollectionSwitchPost`: AnswerApiV1CollectionSwitchPost200Response
fmt.Fprintf(os.Stdout, "Response from `CollectionApi.AnswerApiV1CollectionSwitchPost`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1CollectionSwitchPostRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaCollectionSwitchReq**](SchemaCollectionSwitchReq.md) | collection |
### Return type
[**AnswerApiV1CollectionSwitchPost200Response**](AnswerApiV1CollectionSwitchPost200Response.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1PersonalCollectionPageGet
> HandlerRespBody AnswerApiV1PersonalCollectionPageGet(ctx).Page(page).Pagesize(pagesize).Execute()
UserCollectionList
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
page := "page_example" // string | page (default to "0")
pagesize := "pagesize_example" // string | pagesize (default to "20")
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.CollectionApi.AnswerApiV1PersonalCollectionPageGet(context.Background()).Page(page).Pagesize(pagesize).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `CollectionApi.AnswerApiV1PersonalCollectionPageGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1PersonalCollectionPageGet`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `CollectionApi.AnswerApiV1PersonalCollectionPageGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1PersonalCollectionPageGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**page** | **string** | page | [default to "0"]
**pagesize** | **string** | pagesize | [default to "20"]
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)

560
docs/CommentApi.md Normal file
View File

@@ -0,0 +1,560 @@
# \CommentApi
All URIs are relative to *http://127.0.0.1:80*
Method | HTTP request | Description
------------- | ------------- | -------------
[**AnswerApiV1ActivityTimelineDetailGet**](CommentApi.md#AnswerApiV1ActivityTimelineDetailGet) | **Get** /answer/api/v1/activity/timeline/detail | get object timeline detail
[**AnswerApiV1ActivityTimelineGet**](CommentApi.md#AnswerApiV1ActivityTimelineGet) | **Get** /answer/api/v1/activity/timeline | get object timeline
[**AnswerApiV1CommentDelete**](CommentApi.md#AnswerApiV1CommentDelete) | **Delete** /answer/api/v1/comment | remove comment
[**AnswerApiV1CommentGet**](CommentApi.md#AnswerApiV1CommentGet) | **Get** /answer/api/v1/comment | get comment by id
[**AnswerApiV1CommentPageGet**](CommentApi.md#AnswerApiV1CommentPageGet) | **Get** /answer/api/v1/comment/page | get comment page
[**AnswerApiV1CommentPost**](CommentApi.md#AnswerApiV1CommentPost) | **Post** /answer/api/v1/comment | add comment
[**AnswerApiV1CommentPut**](CommentApi.md#AnswerApiV1CommentPut) | **Put** /answer/api/v1/comment | update comment
[**AnswerApiV1PersonalCommentPageGet**](CommentApi.md#AnswerApiV1PersonalCommentPageGet) | **Get** /answer/api/v1/personal/comment/page | user personal comment list
## AnswerApiV1ActivityTimelineDetailGet
> AnswerApiV1ActivityTimelineGet200Response AnswerApiV1ActivityTimelineDetailGet(ctx).RevisionId(revisionId).Execute()
get object timeline detail
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
revisionId := "revisionId_example" // string | revision id
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.CommentApi.AnswerApiV1ActivityTimelineDetailGet(context.Background()).RevisionId(revisionId).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `CommentApi.AnswerApiV1ActivityTimelineDetailGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1ActivityTimelineDetailGet`: AnswerApiV1ActivityTimelineGet200Response
fmt.Fprintf(os.Stdout, "Response from `CommentApi.AnswerApiV1ActivityTimelineDetailGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1ActivityTimelineDetailGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**revisionId** | **string** | revision id |
### Return type
[**AnswerApiV1ActivityTimelineGet200Response**](AnswerApiV1ActivityTimelineGet200Response.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1ActivityTimelineGet
> AnswerApiV1ActivityTimelineGet200Response AnswerApiV1ActivityTimelineGet(ctx).ObjectId(objectId).TagSlugName(tagSlugName).ObjectType(objectType).ShowVote(showVote).Execute()
get object timeline
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
objectId := "objectId_example" // string | object id (optional)
tagSlugName := "tagSlugName_example" // string | tag slug name (optional)
objectType := "objectType_example" // string | object type (optional)
showVote := true // bool | is show vote (optional)
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.CommentApi.AnswerApiV1ActivityTimelineGet(context.Background()).ObjectId(objectId).TagSlugName(tagSlugName).ObjectType(objectType).ShowVote(showVote).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `CommentApi.AnswerApiV1ActivityTimelineGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1ActivityTimelineGet`: AnswerApiV1ActivityTimelineGet200Response
fmt.Fprintf(os.Stdout, "Response from `CommentApi.AnswerApiV1ActivityTimelineGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1ActivityTimelineGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**objectId** | **string** | object id |
**tagSlugName** | **string** | tag slug name |
**objectType** | **string** | object type |
**showVote** | **bool** | is show vote |
### Return type
[**AnswerApiV1ActivityTimelineGet200Response**](AnswerApiV1ActivityTimelineGet200Response.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1CommentDelete
> HandlerRespBody AnswerApiV1CommentDelete(ctx).Data(data).Execute()
remove comment
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaRemoveCommentReq("CommentId_example") // SchemaRemoveCommentReq | comment
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.CommentApi.AnswerApiV1CommentDelete(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `CommentApi.AnswerApiV1CommentDelete``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1CommentDelete`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `CommentApi.AnswerApiV1CommentDelete`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1CommentDeleteRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaRemoveCommentReq**](SchemaRemoveCommentReq.md) | comment |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1CommentGet
> AnswerApiV1CommentGet200Response AnswerApiV1CommentGet(ctx).Id(id).Execute()
get comment by id
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
id := "id_example" // string | id
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.CommentApi.AnswerApiV1CommentGet(context.Background()).Id(id).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `CommentApi.AnswerApiV1CommentGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1CommentGet`: AnswerApiV1CommentGet200Response
fmt.Fprintf(os.Stdout, "Response from `CommentApi.AnswerApiV1CommentGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1CommentGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**id** | **string** | id |
### Return type
[**AnswerApiV1CommentGet200Response**](AnswerApiV1CommentGet200Response.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1CommentPageGet
> AnswerApiV1CommentGet200Response AnswerApiV1CommentPageGet(ctx).ObjectId(objectId).Page(page).PageSize(pageSize).QueryCond(queryCond).Execute()
get comment page
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
objectId := "objectId_example" // string | object id
page := int32(56) // int32 | page (optional)
pageSize := int32(56) // int32 | page size (optional)
queryCond := "queryCond_example" // string | query condition (optional)
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.CommentApi.AnswerApiV1CommentPageGet(context.Background()).ObjectId(objectId).Page(page).PageSize(pageSize).QueryCond(queryCond).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `CommentApi.AnswerApiV1CommentPageGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1CommentPageGet`: AnswerApiV1CommentGet200Response
fmt.Fprintf(os.Stdout, "Response from `CommentApi.AnswerApiV1CommentPageGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1CommentPageGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**objectId** | **string** | object id |
**page** | **int32** | page |
**pageSize** | **int32** | page size |
**queryCond** | **string** | query condition |
### Return type
[**AnswerApiV1CommentGet200Response**](AnswerApiV1CommentGet200Response.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1CommentPost
> AnswerApiV1CommentPost200Response AnswerApiV1CommentPost(ctx).Data(data).Execute()
add comment
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaAddCommentReq("ObjectId_example", "OriginalText_example") // SchemaAddCommentReq | comment
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.CommentApi.AnswerApiV1CommentPost(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `CommentApi.AnswerApiV1CommentPost``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1CommentPost`: AnswerApiV1CommentPost200Response
fmt.Fprintf(os.Stdout, "Response from `CommentApi.AnswerApiV1CommentPost`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1CommentPostRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaAddCommentReq**](SchemaAddCommentReq.md) | comment |
### Return type
[**AnswerApiV1CommentPost200Response**](AnswerApiV1CommentPost200Response.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1CommentPut
> HandlerRespBody AnswerApiV1CommentPut(ctx).Data(data).Execute()
update comment
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaUpdateCommentReq("CommentId_example", "OriginalText_example") // SchemaUpdateCommentReq | comment
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.CommentApi.AnswerApiV1CommentPut(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `CommentApi.AnswerApiV1CommentPut``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1CommentPut`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `CommentApi.AnswerApiV1CommentPut`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1CommentPutRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaUpdateCommentReq**](SchemaUpdateCommentReq.md) | comment |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1PersonalCommentPageGet
> AnswerApiV1PersonalCommentPageGet200Response AnswerApiV1PersonalCommentPageGet(ctx).Page(page).PageSize(pageSize).Username(username).Execute()
user personal comment list
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
page := int32(56) // int32 | page (optional)
pageSize := int32(56) // int32 | page size (optional)
username := "username_example" // string | username (optional)
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.CommentApi.AnswerApiV1PersonalCommentPageGet(context.Background()).Page(page).PageSize(pageSize).Username(username).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `CommentApi.AnswerApiV1PersonalCommentPageGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1PersonalCommentPageGet`: AnswerApiV1PersonalCommentPageGet200Response
fmt.Fprintf(os.Stdout, "Response from `CommentApi.AnswerApiV1PersonalCommentPageGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1PersonalCommentPageGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**page** | **int32** | page |
**pageSize** | **int32** | page size |
**username** | **string** | username |
### Return type
[**AnswerApiV1PersonalCommentPageGet200Response**](AnswerApiV1PersonalCommentPageGet200Response.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)

134
docs/HandlerRespBody.md Normal file
View File

@@ -0,0 +1,134 @@
# HandlerRespBody
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Code** | Pointer to **int32** | http code | [optional]
**Data** | Pointer to **map[string]interface{}** | response data | [optional]
**Msg** | Pointer to **string** | response message | [optional]
**Reason** | Pointer to **string** | reason key | [optional]
## Methods
### NewHandlerRespBody
`func NewHandlerRespBody() *HandlerRespBody`
NewHandlerRespBody instantiates a new HandlerRespBody 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
### NewHandlerRespBodyWithDefaults
`func NewHandlerRespBodyWithDefaults() *HandlerRespBody`
NewHandlerRespBodyWithDefaults instantiates a new HandlerRespBody 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 *HandlerRespBody) GetCode() int32`
GetCode returns the Code field if non-nil, zero value otherwise.
### GetCodeOk
`func (o *HandlerRespBody) GetCodeOk() (*int32, 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 *HandlerRespBody) SetCode(v int32)`
SetCode sets Code field to given value.
### HasCode
`func (o *HandlerRespBody) HasCode() bool`
HasCode returns a boolean if a field has been set.
### GetData
`func (o *HandlerRespBody) GetData() map[string]interface{}`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *HandlerRespBody) GetDataOk() (*map[string]interface{}, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *HandlerRespBody) SetData(v map[string]interface{})`
SetData sets Data field to given value.
### HasData
`func (o *HandlerRespBody) HasData() bool`
HasData returns a boolean if a field has been set.
### GetMsg
`func (o *HandlerRespBody) GetMsg() string`
GetMsg returns the Msg field if non-nil, zero value otherwise.
### GetMsgOk
`func (o *HandlerRespBody) GetMsgOk() (*string, bool)`
GetMsgOk returns a tuple with the Msg field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMsg
`func (o *HandlerRespBody) SetMsg(v string)`
SetMsg sets Msg field to given value.
### HasMsg
`func (o *HandlerRespBody) HasMsg() bool`
HasMsg returns a boolean if a field has been set.
### GetReason
`func (o *HandlerRespBody) GetReason() string`
GetReason returns the Reason field if non-nil, zero value otherwise.
### GetReasonOk
`func (o *HandlerRespBody) GetReasonOk() (*string, bool)`
GetReasonOk returns a tuple with the Reason field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetReason
`func (o *HandlerRespBody) SetReason(v string)`
SetReason sets Reason field to given value.
### HasReason
`func (o *HandlerRespBody) HasReason() bool`
HasReason 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)

View File

@@ -0,0 +1,108 @@
# InstallCheckConfigFileResp
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ConfigFileExist** | Pointer to **bool** | | [optional]
**DbConnectionSuccess** | Pointer to **bool** | | [optional]
**DbTableExist** | Pointer to **bool** | | [optional]
## Methods
### NewInstallCheckConfigFileResp
`func NewInstallCheckConfigFileResp() *InstallCheckConfigFileResp`
NewInstallCheckConfigFileResp instantiates a new InstallCheckConfigFileResp 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
### NewInstallCheckConfigFileRespWithDefaults
`func NewInstallCheckConfigFileRespWithDefaults() *InstallCheckConfigFileResp`
NewInstallCheckConfigFileRespWithDefaults instantiates a new InstallCheckConfigFileResp 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
### GetConfigFileExist
`func (o *InstallCheckConfigFileResp) GetConfigFileExist() bool`
GetConfigFileExist returns the ConfigFileExist field if non-nil, zero value otherwise.
### GetConfigFileExistOk
`func (o *InstallCheckConfigFileResp) GetConfigFileExistOk() (*bool, bool)`
GetConfigFileExistOk returns a tuple with the ConfigFileExist field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetConfigFileExist
`func (o *InstallCheckConfigFileResp) SetConfigFileExist(v bool)`
SetConfigFileExist sets ConfigFileExist field to given value.
### HasConfigFileExist
`func (o *InstallCheckConfigFileResp) HasConfigFileExist() bool`
HasConfigFileExist returns a boolean if a field has been set.
### GetDbConnectionSuccess
`func (o *InstallCheckConfigFileResp) GetDbConnectionSuccess() bool`
GetDbConnectionSuccess returns the DbConnectionSuccess field if non-nil, zero value otherwise.
### GetDbConnectionSuccessOk
`func (o *InstallCheckConfigFileResp) GetDbConnectionSuccessOk() (*bool, bool)`
GetDbConnectionSuccessOk returns a tuple with the DbConnectionSuccess field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDbConnectionSuccess
`func (o *InstallCheckConfigFileResp) SetDbConnectionSuccess(v bool)`
SetDbConnectionSuccess sets DbConnectionSuccess field to given value.
### HasDbConnectionSuccess
`func (o *InstallCheckConfigFileResp) HasDbConnectionSuccess() bool`
HasDbConnectionSuccess returns a boolean if a field has been set.
### GetDbTableExist
`func (o *InstallCheckConfigFileResp) GetDbTableExist() bool`
GetDbTableExist returns the DbTableExist field if non-nil, zero value otherwise.
### GetDbTableExistOk
`func (o *InstallCheckConfigFileResp) GetDbTableExistOk() (*bool, bool)`
GetDbTableExistOk returns a tuple with the DbTableExist field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDbTableExist
`func (o *InstallCheckConfigFileResp) SetDbTableExist(v bool)`
SetDbTableExist sets DbTableExist field to given value.
### HasDbTableExist
`func (o *InstallCheckConfigFileResp) HasDbTableExist() bool`
HasDbTableExist 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)

View File

@@ -0,0 +1,181 @@
# InstallCheckDatabaseReq
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**DbFile** | Pointer to **string** | | [optional]
**DbHost** | Pointer to **string** | | [optional]
**DbName** | Pointer to **string** | | [optional]
**DbPassword** | Pointer to **string** | | [optional]
**DbType** | **string** | |
**DbUsername** | Pointer to **string** | | [optional]
## Methods
### NewInstallCheckDatabaseReq
`func NewInstallCheckDatabaseReq(dbType string, ) *InstallCheckDatabaseReq`
NewInstallCheckDatabaseReq instantiates a new InstallCheckDatabaseReq 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
### NewInstallCheckDatabaseReqWithDefaults
`func NewInstallCheckDatabaseReqWithDefaults() *InstallCheckDatabaseReq`
NewInstallCheckDatabaseReqWithDefaults instantiates a new InstallCheckDatabaseReq 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
### GetDbFile
`func (o *InstallCheckDatabaseReq) GetDbFile() string`
GetDbFile returns the DbFile field if non-nil, zero value otherwise.
### GetDbFileOk
`func (o *InstallCheckDatabaseReq) GetDbFileOk() (*string, bool)`
GetDbFileOk returns a tuple with the DbFile field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDbFile
`func (o *InstallCheckDatabaseReq) SetDbFile(v string)`
SetDbFile sets DbFile field to given value.
### HasDbFile
`func (o *InstallCheckDatabaseReq) HasDbFile() bool`
HasDbFile returns a boolean if a field has been set.
### GetDbHost
`func (o *InstallCheckDatabaseReq) GetDbHost() string`
GetDbHost returns the DbHost field if non-nil, zero value otherwise.
### GetDbHostOk
`func (o *InstallCheckDatabaseReq) GetDbHostOk() (*string, bool)`
GetDbHostOk returns a tuple with the DbHost field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDbHost
`func (o *InstallCheckDatabaseReq) SetDbHost(v string)`
SetDbHost sets DbHost field to given value.
### HasDbHost
`func (o *InstallCheckDatabaseReq) HasDbHost() bool`
HasDbHost returns a boolean if a field has been set.
### GetDbName
`func (o *InstallCheckDatabaseReq) GetDbName() string`
GetDbName returns the DbName field if non-nil, zero value otherwise.
### GetDbNameOk
`func (o *InstallCheckDatabaseReq) GetDbNameOk() (*string, bool)`
GetDbNameOk returns a tuple with the DbName field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDbName
`func (o *InstallCheckDatabaseReq) SetDbName(v string)`
SetDbName sets DbName field to given value.
### HasDbName
`func (o *InstallCheckDatabaseReq) HasDbName() bool`
HasDbName returns a boolean if a field has been set.
### GetDbPassword
`func (o *InstallCheckDatabaseReq) GetDbPassword() string`
GetDbPassword returns the DbPassword field if non-nil, zero value otherwise.
### GetDbPasswordOk
`func (o *InstallCheckDatabaseReq) GetDbPasswordOk() (*string, bool)`
GetDbPasswordOk returns a tuple with the DbPassword field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDbPassword
`func (o *InstallCheckDatabaseReq) SetDbPassword(v string)`
SetDbPassword sets DbPassword field to given value.
### HasDbPassword
`func (o *InstallCheckDatabaseReq) HasDbPassword() bool`
HasDbPassword returns a boolean if a field has been set.
### GetDbType
`func (o *InstallCheckDatabaseReq) GetDbType() string`
GetDbType returns the DbType field if non-nil, zero value otherwise.
### GetDbTypeOk
`func (o *InstallCheckDatabaseReq) GetDbTypeOk() (*string, bool)`
GetDbTypeOk returns a tuple with the DbType field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDbType
`func (o *InstallCheckDatabaseReq) SetDbType(v string)`
SetDbType sets DbType field to given value.
### GetDbUsername
`func (o *InstallCheckDatabaseReq) GetDbUsername() string`
GetDbUsername returns the DbUsername field if non-nil, zero value otherwise.
### GetDbUsernameOk
`func (o *InstallCheckDatabaseReq) GetDbUsernameOk() (*string, bool)`
GetDbUsernameOk returns a tuple with the DbUsername field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDbUsername
`func (o *InstallCheckDatabaseReq) SetDbUsername(v string)`
SetDbUsername sets DbUsername field to given value.
### HasDbUsername
`func (o *InstallCheckDatabaseReq) HasDbUsername() bool`
HasDbUsername 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)

View File

@@ -0,0 +1,177 @@
# InstallInitBaseInfoReq
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ContactEmail** | **string** | |
**Email** | **string** | |
**Lang** | **string** | |
**Name** | **string** | |
**Password** | **string** | |
**SiteName** | **string** | |
**SiteUrl** | **string** | |
## Methods
### NewInstallInitBaseInfoReq
`func NewInstallInitBaseInfoReq(contactEmail string, email string, lang string, name string, password string, siteName string, siteUrl string, ) *InstallInitBaseInfoReq`
NewInstallInitBaseInfoReq instantiates a new InstallInitBaseInfoReq 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
### NewInstallInitBaseInfoReqWithDefaults
`func NewInstallInitBaseInfoReqWithDefaults() *InstallInitBaseInfoReq`
NewInstallInitBaseInfoReqWithDefaults instantiates a new InstallInitBaseInfoReq 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
### GetContactEmail
`func (o *InstallInitBaseInfoReq) GetContactEmail() string`
GetContactEmail returns the ContactEmail field if non-nil, zero value otherwise.
### GetContactEmailOk
`func (o *InstallInitBaseInfoReq) GetContactEmailOk() (*string, bool)`
GetContactEmailOk returns a tuple with the ContactEmail field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetContactEmail
`func (o *InstallInitBaseInfoReq) SetContactEmail(v string)`
SetContactEmail sets ContactEmail field to given value.
### GetEmail
`func (o *InstallInitBaseInfoReq) GetEmail() string`
GetEmail returns the Email field if non-nil, zero value otherwise.
### GetEmailOk
`func (o *InstallInitBaseInfoReq) GetEmailOk() (*string, bool)`
GetEmailOk returns a tuple with the Email field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetEmail
`func (o *InstallInitBaseInfoReq) SetEmail(v string)`
SetEmail sets Email field to given value.
### GetLang
`func (o *InstallInitBaseInfoReq) GetLang() string`
GetLang returns the Lang field if non-nil, zero value otherwise.
### GetLangOk
`func (o *InstallInitBaseInfoReq) GetLangOk() (*string, bool)`
GetLangOk returns a tuple with the Lang field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetLang
`func (o *InstallInitBaseInfoReq) SetLang(v string)`
SetLang sets Lang field to given value.
### GetName
`func (o *InstallInitBaseInfoReq) GetName() string`
GetName returns the Name field if non-nil, zero value otherwise.
### GetNameOk
`func (o *InstallInitBaseInfoReq) GetNameOk() (*string, bool)`
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetName
`func (o *InstallInitBaseInfoReq) SetName(v string)`
SetName sets Name field to given value.
### GetPassword
`func (o *InstallInitBaseInfoReq) GetPassword() string`
GetPassword returns the Password field if non-nil, zero value otherwise.
### GetPasswordOk
`func (o *InstallInitBaseInfoReq) GetPasswordOk() (*string, bool)`
GetPasswordOk returns a tuple with the Password field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetPassword
`func (o *InstallInitBaseInfoReq) SetPassword(v string)`
SetPassword sets Password field to given value.
### GetSiteName
`func (o *InstallInitBaseInfoReq) GetSiteName() string`
GetSiteName returns the SiteName field if non-nil, zero value otherwise.
### GetSiteNameOk
`func (o *InstallInitBaseInfoReq) GetSiteNameOk() (*string, bool)`
GetSiteNameOk returns a tuple with the SiteName field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSiteName
`func (o *InstallInitBaseInfoReq) SetSiteName(v string)`
SetSiteName sets SiteName field to given value.
### GetSiteUrl
`func (o *InstallInitBaseInfoReq) GetSiteUrl() string`
GetSiteUrl returns the SiteUrl field if non-nil, zero value otherwise.
### GetSiteUrlOk
`func (o *InstallInitBaseInfoReq) GetSiteUrlOk() (*string, bool)`
GetSiteUrlOk returns a tuple with the SiteUrl field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSiteUrl
`func (o *InstallInitBaseInfoReq) SetSiteUrl(v string)`
SetSiteUrl sets SiteUrl field to given value.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

331
docs/InstallationApi.md Normal file
View File

@@ -0,0 +1,331 @@
# \InstallationApi
All URIs are relative to *http://127.0.0.1:80*
Method | HTTP request | Description
------------- | ------------- | -------------
[**InstallationBaseInfoPost**](InstallationApi.md#InstallationBaseInfoPost) | **Post** /installation/base-info | init base info
[**InstallationConfigFileCheckPost**](InstallationApi.md#InstallationConfigFileCheckPost) | **Post** /installation/config-file/check | check config file if exist when installation
[**InstallationDbCheckPost**](InstallationApi.md#InstallationDbCheckPost) | **Post** /installation/db/check | check database if exist when installation
[**InstallationInitPost**](InstallationApi.md#InstallationInitPost) | **Post** /installation/init | init environment
[**RootGet**](InstallationApi.md#RootGet) | **Get** / | if config file not exist try to redirect to install page
## InstallationBaseInfoPost
> HandlerRespBody InstallationBaseInfoPost(ctx).Data(data).Execute()
init base info
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewInstallInitBaseInfoReq("ContactEmail_example", "Email_example", "Lang_example", "Name_example", "Password_example", "SiteName_example", "SiteUrl_example") // InstallInitBaseInfoReq | InitBaseInfoReq
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.InstallationApi.InstallationBaseInfoPost(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `InstallationApi.InstallationBaseInfoPost``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `InstallationBaseInfoPost`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `InstallationApi.InstallationBaseInfoPost`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiInstallationBaseInfoPostRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**InstallInitBaseInfoReq**](InstallInitBaseInfoReq.md) | InitBaseInfoReq |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## InstallationConfigFileCheckPost
> InstallationConfigFileCheckPost200Response InstallationConfigFileCheckPost(ctx).Execute()
check config file if exist when installation
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.InstallationApi.InstallationConfigFileCheckPost(context.Background()).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `InstallationApi.InstallationConfigFileCheckPost``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `InstallationConfigFileCheckPost`: InstallationConfigFileCheckPost200Response
fmt.Fprintf(os.Stdout, "Response from `InstallationApi.InstallationConfigFileCheckPost`: %v\n", resp)
}
```
### Path Parameters
This endpoint does not need any parameter.
### Other Parameters
Other parameters are passed through a pointer to a apiInstallationConfigFileCheckPostRequest struct via the builder pattern
### Return type
[**InstallationConfigFileCheckPost200Response**](InstallationConfigFileCheckPost200Response.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## InstallationDbCheckPost
> InstallationConfigFileCheckPost200Response InstallationDbCheckPost(ctx).Data(data).Execute()
check database if exist when installation
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewInstallCheckDatabaseReq("DbType_example") // InstallCheckDatabaseReq | CheckDatabaseReq
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.InstallationApi.InstallationDbCheckPost(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `InstallationApi.InstallationDbCheckPost``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `InstallationDbCheckPost`: InstallationConfigFileCheckPost200Response
fmt.Fprintf(os.Stdout, "Response from `InstallationApi.InstallationDbCheckPost`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiInstallationDbCheckPostRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**InstallCheckDatabaseReq**](InstallCheckDatabaseReq.md) | CheckDatabaseReq |
### Return type
[**InstallationConfigFileCheckPost200Response**](InstallationConfigFileCheckPost200Response.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## InstallationInitPost
> HandlerRespBody InstallationInitPost(ctx).Data(data).Execute()
init environment
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewInstallCheckDatabaseReq("DbType_example") // InstallCheckDatabaseReq | CheckDatabaseReq
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.InstallationApi.InstallationInitPost(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `InstallationApi.InstallationInitPost``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `InstallationInitPost`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `InstallationApi.InstallationInitPost`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiInstallationInitPostRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**InstallCheckDatabaseReq**](InstallCheckDatabaseReq.md) | CheckDatabaseReq |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## RootGet
> RootGet(ctx).Execute()
if config file not exist try to redirect to install page
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
r, err := apiClient.InstallationApi.RootGet(context.Background()).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `InstallationApi.RootGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
```
### Path Parameters
This endpoint does not need any parameter.
### Other Parameters
Other parameters are passed through a pointer to a apiRootGetRequest struct via the builder pattern
### Return type
(empty response body)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: Not defined
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)

View File

@@ -0,0 +1,82 @@
# InstallationConfigFileCheckPost200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**InstallCheckConfigFileResp**](InstallCheckConfigFileResp.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewInstallationConfigFileCheckPost200Response
`func NewInstallationConfigFileCheckPost200Response() *InstallationConfigFileCheckPost200Response`
NewInstallationConfigFileCheckPost200Response instantiates a new InstallationConfigFileCheckPost200Response 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
### NewInstallationConfigFileCheckPost200ResponseWithDefaults
`func NewInstallationConfigFileCheckPost200ResponseWithDefaults() *InstallationConfigFileCheckPost200Response`
NewInstallationConfigFileCheckPost200ResponseWithDefaults instantiates a new InstallationConfigFileCheckPost200Response 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
### GetData
`func (o *InstallationConfigFileCheckPost200Response) GetData() InstallCheckConfigFileResp`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *InstallationConfigFileCheckPost200Response) GetDataOk() (*InstallCheckConfigFileResp, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *InstallationConfigFileCheckPost200Response) SetData(v InstallCheckConfigFileResp)`
SetData sets Data field to given value.
### HasData
`func (o *InstallationConfigFileCheckPost200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *InstallationConfigFileCheckPost200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *InstallationConfigFileCheckPost200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *InstallationConfigFileCheckPost200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *InstallationConfigFileCheckPost200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

View File

@@ -0,0 +1,82 @@
# InstallationLanguageOptionsGet200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Data** | Pointer to [**[]TranslatorLangOption**](TranslatorLangOption.md) | | [optional]
**HandlerRespBody** | Pointer to [**HandlerRespBody**](HandlerRespBody.md) | | [optional]
## Methods
### NewInstallationLanguageOptionsGet200Response
`func NewInstallationLanguageOptionsGet200Response() *InstallationLanguageOptionsGet200Response`
NewInstallationLanguageOptionsGet200Response instantiates a new InstallationLanguageOptionsGet200Response 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
### NewInstallationLanguageOptionsGet200ResponseWithDefaults
`func NewInstallationLanguageOptionsGet200ResponseWithDefaults() *InstallationLanguageOptionsGet200Response`
NewInstallationLanguageOptionsGet200ResponseWithDefaults instantiates a new InstallationLanguageOptionsGet200Response 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
### GetData
`func (o *InstallationLanguageOptionsGet200Response) GetData() []TranslatorLangOption`
GetData returns the Data field if non-nil, zero value otherwise.
### GetDataOk
`func (o *InstallationLanguageOptionsGet200Response) GetDataOk() (*[]TranslatorLangOption, bool)`
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetData
`func (o *InstallationLanguageOptionsGet200Response) SetData(v []TranslatorLangOption)`
SetData sets Data field to given value.
### HasData
`func (o *InstallationLanguageOptionsGet200Response) HasData() bool`
HasData returns a boolean if a field has been set.
### GetHandlerRespBody
`func (o *InstallationLanguageOptionsGet200Response) GetHandlerRespBody() HandlerRespBody`
GetHandlerRespBody returns the HandlerRespBody field if non-nil, zero value otherwise.
### GetHandlerRespBodyOk
`func (o *InstallationLanguageOptionsGet200Response) GetHandlerRespBodyOk() (*HandlerRespBody, bool)`
GetHandlerRespBodyOk returns a tuple with the HandlerRespBody field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetHandlerRespBody
`func (o *InstallationLanguageOptionsGet200Response) SetHandlerRespBody(v HandlerRespBody)`
SetHandlerRespBody sets HandlerRespBody field to given value.
### HasHandlerRespBody
`func (o *InstallationLanguageOptionsGet200Response) HasHandlerRespBody() bool`
HasHandlerRespBody 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)

261
docs/LangApi.md Normal file
View File

@@ -0,0 +1,261 @@
# \LangApi
All URIs are relative to *http://127.0.0.1:80*
Method | HTTP request | Description
------------- | ------------- | -------------
[**AnswerAdminApiLanguageOptionsGet**](LangApi.md#AnswerAdminApiLanguageOptionsGet) | **Get** /answer/admin/api/language/options | Get language options
[**AnswerApiV1LanguageConfigGet**](LangApi.md#AnswerApiV1LanguageConfigGet) | **Get** /answer/api/v1/language/config | get language config mapping
[**AnswerApiV1LanguageOptionsGet**](LangApi.md#AnswerApiV1LanguageOptionsGet) | **Get** /answer/api/v1/language/options | Get language options
[**InstallationLanguageOptionsGet**](LangApi.md#InstallationLanguageOptionsGet) | **Get** /installation/language/options | get installation language options
## AnswerAdminApiLanguageOptionsGet
> HandlerRespBody AnswerAdminApiLanguageOptionsGet(ctx).Execute()
Get language options
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.LangApi.AnswerAdminApiLanguageOptionsGet(context.Background()).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `LangApi.AnswerAdminApiLanguageOptionsGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerAdminApiLanguageOptionsGet`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `LangApi.AnswerAdminApiLanguageOptionsGet`: %v\n", resp)
}
```
### Path Parameters
This endpoint does not need any parameter.
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerAdminApiLanguageOptionsGetRequest struct via the builder pattern
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1LanguageConfigGet
> HandlerRespBody AnswerApiV1LanguageConfigGet(ctx).AcceptLanguage(acceptLanguage).Execute()
get language config mapping
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
acceptLanguage := "acceptLanguage_example" // string | Accept-Language
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.LangApi.AnswerApiV1LanguageConfigGet(context.Background()).AcceptLanguage(acceptLanguage).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `LangApi.AnswerApiV1LanguageConfigGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1LanguageConfigGet`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `LangApi.AnswerApiV1LanguageConfigGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1LanguageConfigGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**acceptLanguage** | **string** | Accept-Language |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1LanguageOptionsGet
> HandlerRespBody AnswerApiV1LanguageOptionsGet(ctx).Execute()
Get language options
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.LangApi.AnswerApiV1LanguageOptionsGet(context.Background()).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `LangApi.AnswerApiV1LanguageOptionsGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1LanguageOptionsGet`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `LangApi.AnswerApiV1LanguageOptionsGet`: %v\n", resp)
}
```
### Path Parameters
This endpoint does not need any parameter.
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1LanguageOptionsGetRequest struct via the builder pattern
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## InstallationLanguageOptionsGet
> InstallationLanguageOptionsGet200Response InstallationLanguageOptionsGet(ctx).Execute()
get installation language options
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.LangApi.InstallationLanguageOptionsGet(context.Background()).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `LangApi.InstallationLanguageOptionsGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `InstallationLanguageOptionsGet`: InstallationLanguageOptionsGet200Response
fmt.Fprintf(os.Stdout, "Response from `LangApi.InstallationLanguageOptionsGet`: %v\n", resp)
}
```
### Path Parameters
This endpoint does not need any parameter.
### Other Parameters
Other parameters are passed through a pointer to a apiInstallationLanguageOptionsGetRequest struct via the builder pattern
### Return type
[**InstallationLanguageOptionsGet200Response**](InstallationLanguageOptionsGet200Response.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)

342
docs/NotificationApi.md Normal file
View File

@@ -0,0 +1,342 @@
# \NotificationApi
All URIs are relative to *http://127.0.0.1:80*
Method | HTTP request | Description
------------- | ------------- | -------------
[**AnswerApiV1NotificationPageGet**](NotificationApi.md#AnswerApiV1NotificationPageGet) | **Get** /answer/api/v1/notification/page | get notification list
[**AnswerApiV1NotificationReadStateAllPut**](NotificationApi.md#AnswerApiV1NotificationReadStateAllPut) | **Put** /answer/api/v1/notification/read/state/all | ClearUnRead
[**AnswerApiV1NotificationReadStatePut**](NotificationApi.md#AnswerApiV1NotificationReadStatePut) | **Put** /answer/api/v1/notification/read/state | ClearUnRead
[**AnswerApiV1NotificationStatusGet**](NotificationApi.md#AnswerApiV1NotificationStatusGet) | **Get** /answer/api/v1/notification/status | GetRedDot
[**AnswerApiV1NotificationStatusPut**](NotificationApi.md#AnswerApiV1NotificationStatusPut) | **Put** /answer/api/v1/notification/status | DelRedDot
## AnswerApiV1NotificationPageGet
> HandlerRespBody AnswerApiV1NotificationPageGet(ctx).Type_(type_).Page(page).PageSize(pageSize).Execute()
get notification list
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
type_ := "type__example" // string | type
page := int32(56) // int32 | page size (optional)
pageSize := int32(56) // int32 | page size (optional)
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.NotificationApi.AnswerApiV1NotificationPageGet(context.Background()).Type_(type_).Page(page).PageSize(pageSize).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `NotificationApi.AnswerApiV1NotificationPageGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1NotificationPageGet`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `NotificationApi.AnswerApiV1NotificationPageGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1NotificationPageGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**type_** | **string** | type |
**page** | **int32** | page size |
**pageSize** | **int32** | page size |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1NotificationReadStateAllPut
> HandlerRespBody AnswerApiV1NotificationReadStateAllPut(ctx).Data(data).Execute()
ClearUnRead
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaNotificationClearRequest() // SchemaNotificationClearRequest | NotificationClearRequest
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.NotificationApi.AnswerApiV1NotificationReadStateAllPut(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `NotificationApi.AnswerApiV1NotificationReadStateAllPut``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1NotificationReadStateAllPut`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `NotificationApi.AnswerApiV1NotificationReadStateAllPut`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1NotificationReadStateAllPutRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaNotificationClearRequest**](SchemaNotificationClearRequest.md) | NotificationClearRequest |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1NotificationReadStatePut
> HandlerRespBody AnswerApiV1NotificationReadStatePut(ctx).Data(data).Execute()
ClearUnRead
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaNotificationClearIDRequest() // SchemaNotificationClearIDRequest | NotificationClearIDRequest
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.NotificationApi.AnswerApiV1NotificationReadStatePut(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `NotificationApi.AnswerApiV1NotificationReadStatePut``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1NotificationReadStatePut`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `NotificationApi.AnswerApiV1NotificationReadStatePut`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1NotificationReadStatePutRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaNotificationClearIDRequest**](SchemaNotificationClearIDRequest.md) | NotificationClearIDRequest |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1NotificationStatusGet
> HandlerRespBody AnswerApiV1NotificationStatusGet(ctx).Execute()
GetRedDot
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.NotificationApi.AnswerApiV1NotificationStatusGet(context.Background()).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `NotificationApi.AnswerApiV1NotificationStatusGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1NotificationStatusGet`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `NotificationApi.AnswerApiV1NotificationStatusGet`: %v\n", resp)
}
```
### Path Parameters
This endpoint does not need any parameter.
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1NotificationStatusGetRequest struct via the builder pattern
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1NotificationStatusPut
> HandlerRespBody AnswerApiV1NotificationStatusPut(ctx).Data(data).Execute()
DelRedDot
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaNotificationClearRequest() // SchemaNotificationClearRequest | NotificationClearRequest
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.NotificationApi.AnswerApiV1NotificationStatusPut(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `NotificationApi.AnswerApiV1NotificationStatusPut``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1NotificationStatusPut`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `NotificationApi.AnswerApiV1NotificationStatusPut`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1NotificationStatusPutRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaNotificationClearRequest**](SchemaNotificationClearRequest.md) | NotificationClearRequest |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)

82
docs/PagerPageModel.md Normal file
View File

@@ -0,0 +1,82 @@
# PagerPageModel
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Count** | Pointer to **int32** | | [optional]
**List** | Pointer to **map[string]interface{}** | | [optional]
## Methods
### NewPagerPageModel
`func NewPagerPageModel() *PagerPageModel`
NewPagerPageModel instantiates a new PagerPageModel 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
### NewPagerPageModelWithDefaults
`func NewPagerPageModelWithDefaults() *PagerPageModel`
NewPagerPageModelWithDefaults instantiates a new PagerPageModel 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
### GetCount
`func (o *PagerPageModel) GetCount() int32`
GetCount returns the Count field if non-nil, zero value otherwise.
### GetCountOk
`func (o *PagerPageModel) GetCountOk() (*int32, bool)`
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.
### SetCount
`func (o *PagerPageModel) SetCount(v int32)`
SetCount sets Count field to given value.
### HasCount
`func (o *PagerPageModel) HasCount() bool`
HasCount returns a boolean if a field has been set.
### GetList
`func (o *PagerPageModel) GetList() map[string]interface{}`
GetList returns the List field if non-nil, zero value otherwise.
### GetListOk
`func (o *PagerPageModel) GetListOk() (*map[string]interface{}, bool)`
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.
### SetList
`func (o *PagerPageModel) SetList(v map[string]interface{})`
SetList sets List field to given value.
### HasList
`func (o *PagerPageModel) HasList() bool`
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)

947
docs/QuestionApi.md Normal file
View File

@@ -0,0 +1,947 @@
# \QuestionApi
All URIs are relative to *http://127.0.0.1:80*
Method | HTTP request | Description
------------- | ------------- | -------------
[**AnswerApiV1PersonalQaTopGet**](QuestionApi.md#AnswerApiV1PersonalQaTopGet) | **Get** /answer/api/v1/personal/qa/top | UserTop
[**AnswerApiV1QuestionAnswerPost**](QuestionApi.md#AnswerApiV1QuestionAnswerPost) | **Post** /answer/api/v1/question/answer | add question and answer
[**AnswerApiV1QuestionClosemsglistGet**](QuestionApi.md#AnswerApiV1QuestionClosemsglistGet) | **Get** /answer/api/v1/question/closemsglist | close question msg list
[**AnswerApiV1QuestionDelete**](QuestionApi.md#AnswerApiV1QuestionDelete) | **Delete** /answer/api/v1/question | delete question
[**AnswerApiV1QuestionInfoGet**](QuestionApi.md#AnswerApiV1QuestionInfoGet) | **Get** /answer/api/v1/question/info | get question details
[**AnswerApiV1QuestionOperationPut**](QuestionApi.md#AnswerApiV1QuestionOperationPut) | **Put** /answer/api/v1/question/operation | Operation question
[**AnswerApiV1QuestionPageGet**](QuestionApi.md#AnswerApiV1QuestionPageGet) | **Get** /answer/api/v1/question/page | get questions by page
[**AnswerApiV1QuestionPost**](QuestionApi.md#AnswerApiV1QuestionPost) | **Post** /answer/api/v1/question | add question
[**AnswerApiV1QuestionPut**](QuestionApi.md#AnswerApiV1QuestionPut) | **Put** /answer/api/v1/question | update question
[**AnswerApiV1QuestionReopenPut**](QuestionApi.md#AnswerApiV1QuestionReopenPut) | **Put** /answer/api/v1/question/reopen | reopen question
[**AnswerApiV1QuestionSimilarGet**](QuestionApi.md#AnswerApiV1QuestionSimilarGet) | **Get** /answer/api/v1/question/similar | add question title like
[**AnswerApiV1QuestionSimilarTagGet**](QuestionApi.md#AnswerApiV1QuestionSimilarTagGet) | **Get** /answer/api/v1/question/similar/tag | Search Similar Question
[**AnswerApiV1QuestionStatusPut**](QuestionApi.md#AnswerApiV1QuestionStatusPut) | **Put** /answer/api/v1/question/status | Close question
[**PersonalQuestionPageGet**](QuestionApi.md#PersonalQuestionPageGet) | **Get** /personal/question/page | UserList
## AnswerApiV1PersonalQaTopGet
> HandlerRespBody AnswerApiV1PersonalQaTopGet(ctx).Username(username).Execute()
UserTop
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
username := "username_example" // string | username (default to "string")
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.QuestionApi.AnswerApiV1PersonalQaTopGet(context.Background()).Username(username).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `QuestionApi.AnswerApiV1PersonalQaTopGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1PersonalQaTopGet`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `QuestionApi.AnswerApiV1PersonalQaTopGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1PersonalQaTopGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**username** | **string** | username | [default to "string"]
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1QuestionAnswerPost
> HandlerRespBody AnswerApiV1QuestionAnswerPost(ctx).Data(data).Execute()
add question and answer
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaQuestionAddByAnswer("AnswerContent_example", "Content_example", []openapiclient.SchemaTagItem{*openapiclient.NewSchemaTagItem()}, "Title_example") // SchemaQuestionAddByAnswer | question
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.QuestionApi.AnswerApiV1QuestionAnswerPost(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `QuestionApi.AnswerApiV1QuestionAnswerPost``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1QuestionAnswerPost`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `QuestionApi.AnswerApiV1QuestionAnswerPost`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1QuestionAnswerPostRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaQuestionAddByAnswer**](SchemaQuestionAddByAnswer.md) | question |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1QuestionClosemsglistGet
> HandlerRespBody AnswerApiV1QuestionClosemsglistGet(ctx).Execute()
close question msg list
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.QuestionApi.AnswerApiV1QuestionClosemsglistGet(context.Background()).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `QuestionApi.AnswerApiV1QuestionClosemsglistGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1QuestionClosemsglistGet`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `QuestionApi.AnswerApiV1QuestionClosemsglistGet`: %v\n", resp)
}
```
### Path Parameters
This endpoint does not need any parameter.
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1QuestionClosemsglistGetRequest struct via the builder pattern
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1QuestionDelete
> HandlerRespBody AnswerApiV1QuestionDelete(ctx).Data(data).Execute()
delete question
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaRemoveQuestionReq("Id_example") // SchemaRemoveQuestionReq | question
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.QuestionApi.AnswerApiV1QuestionDelete(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `QuestionApi.AnswerApiV1QuestionDelete``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1QuestionDelete`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `QuestionApi.AnswerApiV1QuestionDelete`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1QuestionDeleteRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaRemoveQuestionReq**](SchemaRemoveQuestionReq.md) | question |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1QuestionInfoGet
> string AnswerApiV1QuestionInfoGet(ctx).Id(id).Execute()
get question details
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
id := "id_example" // string | Question TagID (default to "1")
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.QuestionApi.AnswerApiV1QuestionInfoGet(context.Background()).Id(id).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `QuestionApi.AnswerApiV1QuestionInfoGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1QuestionInfoGet`: string
fmt.Fprintf(os.Stdout, "Response from `QuestionApi.AnswerApiV1QuestionInfoGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1QuestionInfoGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**id** | **string** | Question TagID | [default to "1"]
### Return type
**string**
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1QuestionOperationPut
> HandlerRespBody AnswerApiV1QuestionOperationPut(ctx).Data(data).Execute()
Operation question
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaOperationQuestionReq("Id_example") // SchemaOperationQuestionReq | question
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.QuestionApi.AnswerApiV1QuestionOperationPut(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `QuestionApi.AnswerApiV1QuestionOperationPut``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1QuestionOperationPut`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `QuestionApi.AnswerApiV1QuestionOperationPut`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1QuestionOperationPutRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaOperationQuestionReq**](SchemaOperationQuestionReq.md) | question |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1QuestionPageGet
> AnswerApiV1QuestionPageGet200Response AnswerApiV1QuestionPageGet(ctx).Data(data).Execute()
get questions by page
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaQuestionPageReq() // SchemaQuestionPageReq | QuestionPageReq
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.QuestionApi.AnswerApiV1QuestionPageGet(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `QuestionApi.AnswerApiV1QuestionPageGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1QuestionPageGet`: AnswerApiV1QuestionPageGet200Response
fmt.Fprintf(os.Stdout, "Response from `QuestionApi.AnswerApiV1QuestionPageGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1QuestionPageGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaQuestionPageReq**](SchemaQuestionPageReq.md) | QuestionPageReq |
### Return type
[**AnswerApiV1QuestionPageGet200Response**](AnswerApiV1QuestionPageGet200Response.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1QuestionPost
> HandlerRespBody AnswerApiV1QuestionPost(ctx).Data(data).Execute()
add question
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaQuestionAdd("Content_example", []openapiclient.SchemaTagItem{*openapiclient.NewSchemaTagItem()}, "Title_example") // SchemaQuestionAdd | question
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.QuestionApi.AnswerApiV1QuestionPost(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `QuestionApi.AnswerApiV1QuestionPost``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1QuestionPost`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `QuestionApi.AnswerApiV1QuestionPost`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1QuestionPostRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaQuestionAdd**](SchemaQuestionAdd.md) | question |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1QuestionPut
> HandlerRespBody AnswerApiV1QuestionPut(ctx).Data(data).Execute()
update question
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaQuestionUpdate("Content_example", "Id_example", []openapiclient.SchemaTagItem{*openapiclient.NewSchemaTagItem()}, "Title_example") // SchemaQuestionUpdate | question
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.QuestionApi.AnswerApiV1QuestionPut(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `QuestionApi.AnswerApiV1QuestionPut``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1QuestionPut`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `QuestionApi.AnswerApiV1QuestionPut`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1QuestionPutRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaQuestionUpdate**](SchemaQuestionUpdate.md) | question |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1QuestionReopenPut
> HandlerRespBody AnswerApiV1QuestionReopenPut(ctx).Data(data).Execute()
reopen question
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaReopenQuestionReq() // SchemaReopenQuestionReq | question
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.QuestionApi.AnswerApiV1QuestionReopenPut(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `QuestionApi.AnswerApiV1QuestionReopenPut``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1QuestionReopenPut`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `QuestionApi.AnswerApiV1QuestionReopenPut`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1QuestionReopenPutRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaReopenQuestionReq**](SchemaReopenQuestionReq.md) | question |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1QuestionSimilarGet
> HandlerRespBody AnswerApiV1QuestionSimilarGet(ctx).Title(title).Execute()
add question title like
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
title := "title_example" // string | title (default to "string")
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.QuestionApi.AnswerApiV1QuestionSimilarGet(context.Background()).Title(title).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `QuestionApi.AnswerApiV1QuestionSimilarGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1QuestionSimilarGet`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `QuestionApi.AnswerApiV1QuestionSimilarGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1QuestionSimilarGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**title** | **string** | title | [default to "string"]
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1QuestionSimilarTagGet
> string AnswerApiV1QuestionSimilarTagGet(ctx).QuestionId(questionId).Execute()
Search Similar Question
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
questionId := "questionId_example" // string | question_id
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.QuestionApi.AnswerApiV1QuestionSimilarTagGet(context.Background()).QuestionId(questionId).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `QuestionApi.AnswerApiV1QuestionSimilarTagGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1QuestionSimilarTagGet`: string
fmt.Fprintf(os.Stdout, "Response from `QuestionApi.AnswerApiV1QuestionSimilarTagGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1QuestionSimilarTagGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**questionId** | **string** | question_id |
### Return type
**string**
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1QuestionStatusPut
> HandlerRespBody AnswerApiV1QuestionStatusPut(ctx).Data(data).Execute()
Close question
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaCloseQuestionReq("Id_example") // SchemaCloseQuestionReq | question
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.QuestionApi.AnswerApiV1QuestionStatusPut(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `QuestionApi.AnswerApiV1QuestionStatusPut``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1QuestionStatusPut`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `QuestionApi.AnswerApiV1QuestionStatusPut`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1QuestionStatusPutRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaCloseQuestionReq**](SchemaCloseQuestionReq.md) | question |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## PersonalQuestionPageGet
> HandlerRespBody PersonalQuestionPageGet(ctx).Username(username).Order(order).Page(page).Pagesize(pagesize).Execute()
UserList
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
username := "username_example" // string | username (default to "string")
order := "order_example" // string | order
page := "page_example" // string | page (default to "0")
pagesize := "pagesize_example" // string | pagesize (default to "20")
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.QuestionApi.PersonalQuestionPageGet(context.Background()).Username(username).Order(order).Page(page).Pagesize(pagesize).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `QuestionApi.PersonalQuestionPageGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `PersonalQuestionPageGet`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `QuestionApi.PersonalQuestionPageGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiPersonalQuestionPageGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**username** | **string** | username | [default to "string"]
**order** | **string** | order |
**page** | **string** | page | [default to "0"]
**pagesize** | **string** | pagesize | [default to "20"]
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)

79
docs/RankApi.md Normal file
View File

@@ -0,0 +1,79 @@
# \RankApi
All URIs are relative to *http://127.0.0.1:80*
Method | HTTP request | Description
------------- | ------------- | -------------
[**AnswerApiV1PersonalRankPageGet**](RankApi.md#AnswerApiV1PersonalRankPageGet) | **Get** /answer/api/v1/personal/rank/page | user personal rank list
## AnswerApiV1PersonalRankPageGet
> AnswerApiV1PersonalRankPageGet200Response AnswerApiV1PersonalRankPageGet(ctx).Page(page).PageSize(pageSize).Username(username).Execute()
user personal rank list
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
page := int32(56) // int32 | page (optional)
pageSize := int32(56) // int32 | page size (optional)
username := "username_example" // string | username (optional)
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.RankApi.AnswerApiV1PersonalRankPageGet(context.Background()).Page(page).PageSize(pageSize).Username(username).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `RankApi.AnswerApiV1PersonalRankPageGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1PersonalRankPageGet`: AnswerApiV1PersonalRankPageGet200Response
fmt.Fprintf(os.Stdout, "Response from `RankApi.AnswerApiV1PersonalRankPageGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1PersonalRankPageGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**page** | **int32** | page |
**pageSize** | **int32** | page size |
**username** | **string** | username |
### Return type
[**AnswerApiV1PersonalRankPageGet200Response**](AnswerApiV1PersonalRankPageGet200Response.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)

146
docs/ReasonApi.md Normal file
View File

@@ -0,0 +1,146 @@
# \ReasonApi
All URIs are relative to *http://127.0.0.1:80*
Method | HTTP request | Description
------------- | ------------- | -------------
[**AnswerAdminApiReasonsGet**](ReasonApi.md#AnswerAdminApiReasonsGet) | **Get** /answer/admin/api/reasons | get reasons by object type and action
[**AnswerApiV1ReasonsGet**](ReasonApi.md#AnswerApiV1ReasonsGet) | **Get** /answer/api/v1/reasons | get reasons by object type and action
## AnswerAdminApiReasonsGet
> HandlerRespBody AnswerAdminApiReasonsGet(ctx).ObjectType(objectType).Action(action).Execute()
get reasons by object type and action
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
objectType := "objectType_example" // string | object_type
action := "action_example" // string | action
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.ReasonApi.AnswerAdminApiReasonsGet(context.Background()).ObjectType(objectType).Action(action).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ReasonApi.AnswerAdminApiReasonsGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerAdminApiReasonsGet`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `ReasonApi.AnswerAdminApiReasonsGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerAdminApiReasonsGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**objectType** | **string** | object_type |
**action** | **string** | action |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1ReasonsGet
> HandlerRespBody AnswerApiV1ReasonsGet(ctx).ObjectType(objectType).Action(action).Execute()
get reasons by object type and action
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
objectType := "objectType_example" // string | object_type
action := "action_example" // string | action
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.ReasonApi.AnswerApiV1ReasonsGet(context.Background()).ObjectType(objectType).Action(action).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ReasonApi.AnswerApiV1ReasonsGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1ReasonsGet`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `ReasonApi.AnswerApiV1ReasonsGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1ReasonsGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**objectType** | **string** | object_type |
**action** | **string** | action |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)

142
docs/ReportApi.md Normal file
View File

@@ -0,0 +1,142 @@
# \ReportApi
All URIs are relative to *http://127.0.0.1:80*
Method | HTTP request | Description
------------- | ------------- | -------------
[**AnswerApiV1ReportPost**](ReportApi.md#AnswerApiV1ReportPost) | **Post** /answer/api/v1/report | add report
[**AnswerApiV1ReportTypeListGet**](ReportApi.md#AnswerApiV1ReportTypeListGet) | **Get** /answer/api/v1/report/type/list | get report type list
## AnswerApiV1ReportPost
> HandlerRespBody AnswerApiV1ReportPost(ctx).Data(data).Execute()
add report
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaAddReportReq("ObjectId_example", int32(123)) // SchemaAddReportReq | report
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.ReportApi.AnswerApiV1ReportPost(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ReportApi.AnswerApiV1ReportPost``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1ReportPost`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `ReportApi.AnswerApiV1ReportPost`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1ReportPostRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaAddReportReq**](SchemaAddReportReq.md) | report |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1ReportTypeListGet
> AnswerApiV1ReportTypeListGet200Response AnswerApiV1ReportTypeListGet(ctx).Source(source).Execute()
get report type list
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
source := "source_example" // string | report source
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.ReportApi.AnswerApiV1ReportTypeListGet(context.Background()).Source(source).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `ReportApi.AnswerApiV1ReportTypeListGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1ReportTypeListGet`: AnswerApiV1ReportTypeListGet200Response
fmt.Fprintf(os.Stdout, "Response from `ReportApi.AnswerApiV1ReportTypeListGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1ReportTypeListGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**source** | **string** | report source |
### Return type
[**AnswerApiV1ReportTypeListGet200Response**](AnswerApiV1ReportTypeListGet200Response.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)

276
docs/RevisionApi.md Normal file
View File

@@ -0,0 +1,276 @@
# \RevisionApi
All URIs are relative to *http://127.0.0.1:80*
Method | HTTP request | Description
------------- | ------------- | -------------
[**AnswerApiV1RevisionsAuditPut**](RevisionApi.md#AnswerApiV1RevisionsAuditPut) | **Put** /answer/api/v1/revisions/audit | revision audit
[**AnswerApiV1RevisionsEditCheckGet**](RevisionApi.md#AnswerApiV1RevisionsEditCheckGet) | **Get** /answer/api/v1/revisions/edit/check | check can update revision
[**AnswerApiV1RevisionsGet**](RevisionApi.md#AnswerApiV1RevisionsGet) | **Get** /answer/api/v1/revisions | get revision list
[**AnswerApiV1RevisionsUnreviewedGet**](RevisionApi.md#AnswerApiV1RevisionsUnreviewedGet) | **Get** /answer/api/v1/revisions/unreviewed | get unreviewed revision list
## AnswerApiV1RevisionsAuditPut
> HandlerRespBody AnswerApiV1RevisionsAuditPut(ctx).Data(data).Execute()
revision audit
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
data := *openapiclient.NewSchemaRevisionAuditReq("Id_example", "Operation_example") // SchemaRevisionAuditReq | audit
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.RevisionApi.AnswerApiV1RevisionsAuditPut(context.Background()).Data(data).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `RevisionApi.AnswerApiV1RevisionsAuditPut``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1RevisionsAuditPut`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `RevisionApi.AnswerApiV1RevisionsAuditPut`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1RevisionsAuditPutRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**data** | [**SchemaRevisionAuditReq**](SchemaRevisionAuditReq.md) | audit |
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1RevisionsEditCheckGet
> HandlerRespBody AnswerApiV1RevisionsEditCheckGet(ctx).Id(id).Execute()
check can update revision
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
id := "id_example" // string | id (default to "string")
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.RevisionApi.AnswerApiV1RevisionsEditCheckGet(context.Background()).Id(id).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `RevisionApi.AnswerApiV1RevisionsEditCheckGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1RevisionsEditCheckGet`: HandlerRespBody
fmt.Fprintf(os.Stdout, "Response from `RevisionApi.AnswerApiV1RevisionsEditCheckGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1RevisionsEditCheckGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**id** | **string** | id | [default to "string"]
### Return type
[**HandlerRespBody**](HandlerRespBody.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1RevisionsGet
> AnswerApiV1RevisionsGet200Response AnswerApiV1RevisionsGet(ctx).ObjectId(objectId).Execute()
get revision list
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
objectId := "objectId_example" // string | object id
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.RevisionApi.AnswerApiV1RevisionsGet(context.Background()).ObjectId(objectId).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `RevisionApi.AnswerApiV1RevisionsGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1RevisionsGet`: AnswerApiV1RevisionsGet200Response
fmt.Fprintf(os.Stdout, "Response from `RevisionApi.AnswerApiV1RevisionsGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1RevisionsGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**objectId** | **string** | object id |
### Return type
[**AnswerApiV1RevisionsGet200Response**](AnswerApiV1RevisionsGet200Response.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)
## AnswerApiV1RevisionsUnreviewedGet
> AnswerApiV1RevisionsUnreviewedGet200Response AnswerApiV1RevisionsUnreviewedGet(ctx).Page(page).Execute()
get unreviewed revision list
### Example
```go
package main
import (
"context"
"fmt"
"os"
openapiclient "github.com/GIT_USER_ID/GIT_REPO_ID"
)
func main() {
page := "page_example" // string | page id
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.RevisionApi.AnswerApiV1RevisionsUnreviewedGet(context.Background()).Page(page).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `RevisionApi.AnswerApiV1RevisionsUnreviewedGet``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `AnswerApiV1RevisionsUnreviewedGet`: AnswerApiV1RevisionsUnreviewedGet200Response
fmt.Fprintf(os.Stdout, "Response from `RevisionApi.AnswerApiV1RevisionsUnreviewedGet`: %v\n", resp)
}
```
### Path Parameters
### Other Parameters
Other parameters are passed through a pointer to a apiAnswerApiV1RevisionsUnreviewedGetRequest struct via the builder pattern
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**page** | **string** | page id |
### Return type
[**AnswerApiV1RevisionsUnreviewedGet200Response**](AnswerApiV1RevisionsUnreviewedGet200Response.md)
### Authorization
[ApiKeyAuth](../README.md#ApiKeyAuth)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints)
[[Back to Model list]](../README.md#documentation-for-models)
[[Back to README]](../README.md)

212
docs/SchemaActObjectInfo.md Normal file
View File

@@ -0,0 +1,212 @@
# SchemaActObjectInfo
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**AnswerId** | Pointer to **string** | | [optional]
**DisplayName** | Pointer to **string** | | [optional]
**MainTagSlugName** | Pointer to **string** | | [optional]
**ObjectType** | Pointer to **string** | | [optional]
**QuestionId** | Pointer to **string** | | [optional]
**Title** | Pointer to **string** | | [optional]
**Username** | Pointer to **string** | | [optional]
## Methods
### NewSchemaActObjectInfo
`func NewSchemaActObjectInfo() *SchemaActObjectInfo`
NewSchemaActObjectInfo instantiates a new SchemaActObjectInfo 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
### NewSchemaActObjectInfoWithDefaults
`func NewSchemaActObjectInfoWithDefaults() *SchemaActObjectInfo`
NewSchemaActObjectInfoWithDefaults instantiates a new SchemaActObjectInfo 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
### GetAnswerId
`func (o *SchemaActObjectInfo) GetAnswerId() string`
GetAnswerId returns the AnswerId field if non-nil, zero value otherwise.
### GetAnswerIdOk
`func (o *SchemaActObjectInfo) GetAnswerIdOk() (*string, bool)`
GetAnswerIdOk returns a tuple with the AnswerId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetAnswerId
`func (o *SchemaActObjectInfo) SetAnswerId(v string)`
SetAnswerId sets AnswerId field to given value.
### HasAnswerId
`func (o *SchemaActObjectInfo) HasAnswerId() bool`
HasAnswerId returns a boolean if a field has been set.
### GetDisplayName
`func (o *SchemaActObjectInfo) GetDisplayName() string`
GetDisplayName returns the DisplayName field if non-nil, zero value otherwise.
### GetDisplayNameOk
`func (o *SchemaActObjectInfo) GetDisplayNameOk() (*string, bool)`
GetDisplayNameOk returns a tuple with the DisplayName field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDisplayName
`func (o *SchemaActObjectInfo) SetDisplayName(v string)`
SetDisplayName sets DisplayName field to given value.
### HasDisplayName
`func (o *SchemaActObjectInfo) HasDisplayName() bool`
HasDisplayName returns a boolean if a field has been set.
### GetMainTagSlugName
`func (o *SchemaActObjectInfo) GetMainTagSlugName() string`
GetMainTagSlugName returns the MainTagSlugName field if non-nil, zero value otherwise.
### GetMainTagSlugNameOk
`func (o *SchemaActObjectInfo) GetMainTagSlugNameOk() (*string, bool)`
GetMainTagSlugNameOk returns a tuple with the MainTagSlugName field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMainTagSlugName
`func (o *SchemaActObjectInfo) SetMainTagSlugName(v string)`
SetMainTagSlugName sets MainTagSlugName field to given value.
### HasMainTagSlugName
`func (o *SchemaActObjectInfo) HasMainTagSlugName() bool`
HasMainTagSlugName returns a boolean if a field has been set.
### GetObjectType
`func (o *SchemaActObjectInfo) GetObjectType() string`
GetObjectType returns the ObjectType field if non-nil, zero value otherwise.
### GetObjectTypeOk
`func (o *SchemaActObjectInfo) GetObjectTypeOk() (*string, bool)`
GetObjectTypeOk returns a tuple with the ObjectType field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetObjectType
`func (o *SchemaActObjectInfo) SetObjectType(v string)`
SetObjectType sets ObjectType field to given value.
### HasObjectType
`func (o *SchemaActObjectInfo) HasObjectType() bool`
HasObjectType returns a boolean if a field has been set.
### GetQuestionId
`func (o *SchemaActObjectInfo) GetQuestionId() string`
GetQuestionId returns the QuestionId field if non-nil, zero value otherwise.
### GetQuestionIdOk
`func (o *SchemaActObjectInfo) GetQuestionIdOk() (*string, bool)`
GetQuestionIdOk returns a tuple with the QuestionId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetQuestionId
`func (o *SchemaActObjectInfo) SetQuestionId(v string)`
SetQuestionId sets QuestionId field to given value.
### HasQuestionId
`func (o *SchemaActObjectInfo) HasQuestionId() bool`
HasQuestionId returns a boolean if a field has been set.
### GetTitle
`func (o *SchemaActObjectInfo) GetTitle() string`
GetTitle returns the Title field if non-nil, zero value otherwise.
### GetTitleOk
`func (o *SchemaActObjectInfo) GetTitleOk() (*string, bool)`
GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetTitle
`func (o *SchemaActObjectInfo) SetTitle(v string)`
SetTitle sets Title field to given value.
### HasTitle
`func (o *SchemaActObjectInfo) HasTitle() bool`
HasTitle returns a boolean if a field has been set.
### GetUsername
`func (o *SchemaActObjectInfo) GetUsername() string`
GetUsername returns the Username field if non-nil, zero value otherwise.
### GetUsernameOk
`func (o *SchemaActObjectInfo) GetUsernameOk() (*string, bool)`
GetUsernameOk returns a tuple with the Username field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetUsername
`func (o *SchemaActObjectInfo) SetUsername(v string)`
SetUsername sets Username field to given value.
### HasUsername
`func (o *SchemaActObjectInfo) HasUsername() bool`
HasUsername 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)

View File

@@ -0,0 +1,342 @@
# SchemaActObjectTimeline
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ActivityId** | Pointer to **string** | | [optional]
**ActivityType** | Pointer to **string** | | [optional]
**Cancelled** | Pointer to **bool** | | [optional]
**CancelledAt** | Pointer to **int32** | | [optional]
**Comment** | Pointer to **string** | | [optional]
**CreatedAt** | Pointer to **int32** | | [optional]
**Id** | Pointer to **string** | | [optional]
**ObjectId** | Pointer to **string** | | [optional]
**ObjectType** | Pointer to **string** | | [optional]
**RevisionId** | Pointer to **string** | | [optional]
**UserDisplayName** | Pointer to **string** | | [optional]
**Username** | Pointer to **string** | | [optional]
## Methods
### NewSchemaActObjectTimeline
`func NewSchemaActObjectTimeline() *SchemaActObjectTimeline`
NewSchemaActObjectTimeline instantiates a new SchemaActObjectTimeline 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
### NewSchemaActObjectTimelineWithDefaults
`func NewSchemaActObjectTimelineWithDefaults() *SchemaActObjectTimeline`
NewSchemaActObjectTimelineWithDefaults instantiates a new SchemaActObjectTimeline 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
### GetActivityId
`func (o *SchemaActObjectTimeline) GetActivityId() string`
GetActivityId returns the ActivityId field if non-nil, zero value otherwise.
### GetActivityIdOk
`func (o *SchemaActObjectTimeline) GetActivityIdOk() (*string, bool)`
GetActivityIdOk returns a tuple with the ActivityId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetActivityId
`func (o *SchemaActObjectTimeline) SetActivityId(v string)`
SetActivityId sets ActivityId field to given value.
### HasActivityId
`func (o *SchemaActObjectTimeline) HasActivityId() bool`
HasActivityId returns a boolean if a field has been set.
### GetActivityType
`func (o *SchemaActObjectTimeline) GetActivityType() string`
GetActivityType returns the ActivityType field if non-nil, zero value otherwise.
### GetActivityTypeOk
`func (o *SchemaActObjectTimeline) GetActivityTypeOk() (*string, bool)`
GetActivityTypeOk returns a tuple with the ActivityType field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetActivityType
`func (o *SchemaActObjectTimeline) SetActivityType(v string)`
SetActivityType sets ActivityType field to given value.
### HasActivityType
`func (o *SchemaActObjectTimeline) HasActivityType() bool`
HasActivityType returns a boolean if a field has been set.
### GetCancelled
`func (o *SchemaActObjectTimeline) GetCancelled() bool`
GetCancelled returns the Cancelled field if non-nil, zero value otherwise.
### GetCancelledOk
`func (o *SchemaActObjectTimeline) GetCancelledOk() (*bool, bool)`
GetCancelledOk returns a tuple with the Cancelled field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCancelled
`func (o *SchemaActObjectTimeline) SetCancelled(v bool)`
SetCancelled sets Cancelled field to given value.
### HasCancelled
`func (o *SchemaActObjectTimeline) HasCancelled() bool`
HasCancelled returns a boolean if a field has been set.
### GetCancelledAt
`func (o *SchemaActObjectTimeline) GetCancelledAt() int32`
GetCancelledAt returns the CancelledAt field if non-nil, zero value otherwise.
### GetCancelledAtOk
`func (o *SchemaActObjectTimeline) GetCancelledAtOk() (*int32, bool)`
GetCancelledAtOk returns a tuple with the CancelledAt field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCancelledAt
`func (o *SchemaActObjectTimeline) SetCancelledAt(v int32)`
SetCancelledAt sets CancelledAt field to given value.
### HasCancelledAt
`func (o *SchemaActObjectTimeline) HasCancelledAt() bool`
HasCancelledAt returns a boolean if a field has been set.
### GetComment
`func (o *SchemaActObjectTimeline) GetComment() string`
GetComment returns the Comment field if non-nil, zero value otherwise.
### GetCommentOk
`func (o *SchemaActObjectTimeline) GetCommentOk() (*string, bool)`
GetCommentOk returns a tuple with the Comment field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetComment
`func (o *SchemaActObjectTimeline) SetComment(v string)`
SetComment sets Comment field to given value.
### HasComment
`func (o *SchemaActObjectTimeline) HasComment() bool`
HasComment returns a boolean if a field has been set.
### GetCreatedAt
`func (o *SchemaActObjectTimeline) GetCreatedAt() int32`
GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.
### GetCreatedAtOk
`func (o *SchemaActObjectTimeline) GetCreatedAtOk() (*int32, bool)`
GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCreatedAt
`func (o *SchemaActObjectTimeline) SetCreatedAt(v int32)`
SetCreatedAt sets CreatedAt field to given value.
### HasCreatedAt
`func (o *SchemaActObjectTimeline) HasCreatedAt() bool`
HasCreatedAt returns a boolean if a field has been set.
### GetId
`func (o *SchemaActObjectTimeline) GetId() string`
GetId returns the Id field if non-nil, zero value otherwise.
### GetIdOk
`func (o *SchemaActObjectTimeline) GetIdOk() (*string, bool)`
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetId
`func (o *SchemaActObjectTimeline) SetId(v string)`
SetId sets Id field to given value.
### HasId
`func (o *SchemaActObjectTimeline) HasId() bool`
HasId returns a boolean if a field has been set.
### GetObjectId
`func (o *SchemaActObjectTimeline) GetObjectId() string`
GetObjectId returns the ObjectId field if non-nil, zero value otherwise.
### GetObjectIdOk
`func (o *SchemaActObjectTimeline) GetObjectIdOk() (*string, bool)`
GetObjectIdOk returns a tuple with the ObjectId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetObjectId
`func (o *SchemaActObjectTimeline) SetObjectId(v string)`
SetObjectId sets ObjectId field to given value.
### HasObjectId
`func (o *SchemaActObjectTimeline) HasObjectId() bool`
HasObjectId returns a boolean if a field has been set.
### GetObjectType
`func (o *SchemaActObjectTimeline) GetObjectType() string`
GetObjectType returns the ObjectType field if non-nil, zero value otherwise.
### GetObjectTypeOk
`func (o *SchemaActObjectTimeline) GetObjectTypeOk() (*string, bool)`
GetObjectTypeOk returns a tuple with the ObjectType field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetObjectType
`func (o *SchemaActObjectTimeline) SetObjectType(v string)`
SetObjectType sets ObjectType field to given value.
### HasObjectType
`func (o *SchemaActObjectTimeline) HasObjectType() bool`
HasObjectType returns a boolean if a field has been set.
### GetRevisionId
`func (o *SchemaActObjectTimeline) GetRevisionId() string`
GetRevisionId returns the RevisionId field if non-nil, zero value otherwise.
### GetRevisionIdOk
`func (o *SchemaActObjectTimeline) GetRevisionIdOk() (*string, bool)`
GetRevisionIdOk returns a tuple with the RevisionId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRevisionId
`func (o *SchemaActObjectTimeline) SetRevisionId(v string)`
SetRevisionId sets RevisionId field to given value.
### HasRevisionId
`func (o *SchemaActObjectTimeline) HasRevisionId() bool`
HasRevisionId returns a boolean if a field has been set.
### GetUserDisplayName
`func (o *SchemaActObjectTimeline) GetUserDisplayName() string`
GetUserDisplayName returns the UserDisplayName field if non-nil, zero value otherwise.
### GetUserDisplayNameOk
`func (o *SchemaActObjectTimeline) GetUserDisplayNameOk() (*string, bool)`
GetUserDisplayNameOk returns a tuple with the UserDisplayName field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetUserDisplayName
`func (o *SchemaActObjectTimeline) SetUserDisplayName(v string)`
SetUserDisplayName sets UserDisplayName field to given value.
### HasUserDisplayName
`func (o *SchemaActObjectTimeline) HasUserDisplayName() bool`
HasUserDisplayName returns a boolean if a field has been set.
### GetUsername
`func (o *SchemaActObjectTimeline) GetUsername() string`
GetUsername returns the Username field if non-nil, zero value otherwise.
### GetUsernameOk
`func (o *SchemaActObjectTimeline) GetUsernameOk() (*string, bool)`
GetUsernameOk returns a tuple with the Username field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetUsername
`func (o *SchemaActObjectTimeline) SetUsername(v string)`
SetUsername sets Username field to given value.
### HasUsername
`func (o *SchemaActObjectTimeline) HasUsername() bool`
HasUsername 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)

View File

@@ -0,0 +1,108 @@
# SchemaActionRecordResp
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**CaptchaId** | Pointer to **string** | | [optional]
**CaptchaImg** | Pointer to **string** | | [optional]
**Verify** | Pointer to **bool** | | [optional]
## Methods
### NewSchemaActionRecordResp
`func NewSchemaActionRecordResp() *SchemaActionRecordResp`
NewSchemaActionRecordResp instantiates a new SchemaActionRecordResp 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
### NewSchemaActionRecordRespWithDefaults
`func NewSchemaActionRecordRespWithDefaults() *SchemaActionRecordResp`
NewSchemaActionRecordRespWithDefaults instantiates a new SchemaActionRecordResp 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
### GetCaptchaId
`func (o *SchemaActionRecordResp) GetCaptchaId() string`
GetCaptchaId returns the CaptchaId field if non-nil, zero value otherwise.
### GetCaptchaIdOk
`func (o *SchemaActionRecordResp) GetCaptchaIdOk() (*string, bool)`
GetCaptchaIdOk returns a tuple with the CaptchaId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCaptchaId
`func (o *SchemaActionRecordResp) SetCaptchaId(v string)`
SetCaptchaId sets CaptchaId field to given value.
### HasCaptchaId
`func (o *SchemaActionRecordResp) HasCaptchaId() bool`
HasCaptchaId returns a boolean if a field has been set.
### GetCaptchaImg
`func (o *SchemaActionRecordResp) GetCaptchaImg() string`
GetCaptchaImg returns the CaptchaImg field if non-nil, zero value otherwise.
### GetCaptchaImgOk
`func (o *SchemaActionRecordResp) GetCaptchaImgOk() (*string, bool)`
GetCaptchaImgOk returns a tuple with the CaptchaImg field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCaptchaImg
`func (o *SchemaActionRecordResp) SetCaptchaImg(v string)`
SetCaptchaImg sets CaptchaImg field to given value.
### HasCaptchaImg
`func (o *SchemaActionRecordResp) HasCaptchaImg() bool`
HasCaptchaImg returns a boolean if a field has been set.
### GetVerify
`func (o *SchemaActionRecordResp) GetVerify() bool`
GetVerify returns the Verify field if non-nil, zero value otherwise.
### GetVerifyOk
`func (o *SchemaActionRecordResp) GetVerifyOk() (*bool, bool)`
GetVerifyOk returns a tuple with the Verify field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetVerify
`func (o *SchemaActionRecordResp) SetVerify(v bool)`
SetVerify sets Verify field to given value.
### HasVerify
`func (o *SchemaActionRecordResp) HasVerify() bool`
HasVerify 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)

124
docs/SchemaAddCommentReq.md Normal file
View File

@@ -0,0 +1,124 @@
# SchemaAddCommentReq
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**MentionUsernameList** | Pointer to **[]string** | @ user id list | [optional]
**ObjectId** | **string** | object id |
**OriginalText** | **string** | original comment content |
**ReplyCommentId** | Pointer to **string** | reply comment id | [optional]
## Methods
### NewSchemaAddCommentReq
`func NewSchemaAddCommentReq(objectId string, originalText string, ) *SchemaAddCommentReq`
NewSchemaAddCommentReq instantiates a new SchemaAddCommentReq 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
### NewSchemaAddCommentReqWithDefaults
`func NewSchemaAddCommentReqWithDefaults() *SchemaAddCommentReq`
NewSchemaAddCommentReqWithDefaults instantiates a new SchemaAddCommentReq 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
### GetMentionUsernameList
`func (o *SchemaAddCommentReq) GetMentionUsernameList() []string`
GetMentionUsernameList returns the MentionUsernameList field if non-nil, zero value otherwise.
### GetMentionUsernameListOk
`func (o *SchemaAddCommentReq) GetMentionUsernameListOk() (*[]string, bool)`
GetMentionUsernameListOk returns a tuple with the MentionUsernameList field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMentionUsernameList
`func (o *SchemaAddCommentReq) SetMentionUsernameList(v []string)`
SetMentionUsernameList sets MentionUsernameList field to given value.
### HasMentionUsernameList
`func (o *SchemaAddCommentReq) HasMentionUsernameList() bool`
HasMentionUsernameList returns a boolean if a field has been set.
### GetObjectId
`func (o *SchemaAddCommentReq) GetObjectId() string`
GetObjectId returns the ObjectId field if non-nil, zero value otherwise.
### GetObjectIdOk
`func (o *SchemaAddCommentReq) GetObjectIdOk() (*string, bool)`
GetObjectIdOk returns a tuple with the ObjectId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetObjectId
`func (o *SchemaAddCommentReq) SetObjectId(v string)`
SetObjectId sets ObjectId field to given value.
### GetOriginalText
`func (o *SchemaAddCommentReq) GetOriginalText() string`
GetOriginalText returns the OriginalText field if non-nil, zero value otherwise.
### GetOriginalTextOk
`func (o *SchemaAddCommentReq) GetOriginalTextOk() (*string, bool)`
GetOriginalTextOk returns a tuple with the OriginalText field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetOriginalText
`func (o *SchemaAddCommentReq) SetOriginalText(v string)`
SetOriginalText sets OriginalText field to given value.
### GetReplyCommentId
`func (o *SchemaAddCommentReq) GetReplyCommentId() string`
GetReplyCommentId returns the ReplyCommentId field if non-nil, zero value otherwise.
### GetReplyCommentIdOk
`func (o *SchemaAddCommentReq) GetReplyCommentIdOk() (*string, bool)`
GetReplyCommentIdOk returns a tuple with the ReplyCommentId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetReplyCommentId
`func (o *SchemaAddCommentReq) SetReplyCommentId(v string)`
SetReplyCommentId sets ReplyCommentId field to given value.
### HasReplyCommentId
`func (o *SchemaAddCommentReq) HasReplyCommentId() bool`
HasReplyCommentId 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)

View File

@@ -0,0 +1,98 @@
# SchemaAddReportReq
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Content** | Pointer to **string** | report content | [optional]
**ObjectId** | **string** | object id |
**ReportType** | **int32** | report type |
## Methods
### NewSchemaAddReportReq
`func NewSchemaAddReportReq(objectId string, reportType int32, ) *SchemaAddReportReq`
NewSchemaAddReportReq instantiates a new SchemaAddReportReq 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
### NewSchemaAddReportReqWithDefaults
`func NewSchemaAddReportReqWithDefaults() *SchemaAddReportReq`
NewSchemaAddReportReqWithDefaults instantiates a new SchemaAddReportReq 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
### GetContent
`func (o *SchemaAddReportReq) GetContent() string`
GetContent returns the Content field if non-nil, zero value otherwise.
### GetContentOk
`func (o *SchemaAddReportReq) GetContentOk() (*string, bool)`
GetContentOk returns a tuple with the Content field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetContent
`func (o *SchemaAddReportReq) SetContent(v string)`
SetContent sets Content field to given value.
### HasContent
`func (o *SchemaAddReportReq) HasContent() bool`
HasContent returns a boolean if a field has been set.
### GetObjectId
`func (o *SchemaAddReportReq) GetObjectId() string`
GetObjectId returns the ObjectId field if non-nil, zero value otherwise.
### GetObjectIdOk
`func (o *SchemaAddReportReq) GetObjectIdOk() (*string, bool)`
GetObjectIdOk returns a tuple with the ObjectId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetObjectId
`func (o *SchemaAddReportReq) SetObjectId(v string)`
SetObjectId sets ObjectId field to given value.
### GetReportType
`func (o *SchemaAddReportReq) GetReportType() int32`
GetReportType returns the ReportType field if non-nil, zero value otherwise.
### GetReportTypeOk
`func (o *SchemaAddReportReq) GetReportTypeOk() (*int32, bool)`
GetReportTypeOk returns a tuple with the ReportType field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetReportType
`func (o *SchemaAddReportReq) SetReportType(v int32)`
SetReportType sets ReportType field to given value.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

93
docs/SchemaAddTagReq.md Normal file
View File

@@ -0,0 +1,93 @@
# SchemaAddTagReq
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**DisplayName** | **string** | display_name |
**OriginalText** | **string** | original text |
**SlugName** | **string** | slug_name |
## Methods
### NewSchemaAddTagReq
`func NewSchemaAddTagReq(displayName string, originalText string, slugName string, ) *SchemaAddTagReq`
NewSchemaAddTagReq instantiates a new SchemaAddTagReq 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
### NewSchemaAddTagReqWithDefaults
`func NewSchemaAddTagReqWithDefaults() *SchemaAddTagReq`
NewSchemaAddTagReqWithDefaults instantiates a new SchemaAddTagReq 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
### GetDisplayName
`func (o *SchemaAddTagReq) GetDisplayName() string`
GetDisplayName returns the DisplayName field if non-nil, zero value otherwise.
### GetDisplayNameOk
`func (o *SchemaAddTagReq) GetDisplayNameOk() (*string, bool)`
GetDisplayNameOk returns a tuple with the DisplayName field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDisplayName
`func (o *SchemaAddTagReq) SetDisplayName(v string)`
SetDisplayName sets DisplayName field to given value.
### GetOriginalText
`func (o *SchemaAddTagReq) GetOriginalText() string`
GetOriginalText returns the OriginalText field if non-nil, zero value otherwise.
### GetOriginalTextOk
`func (o *SchemaAddTagReq) GetOriginalTextOk() (*string, bool)`
GetOriginalTextOk returns a tuple with the OriginalText field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetOriginalText
`func (o *SchemaAddTagReq) SetOriginalText(v string)`
SetOriginalText sets OriginalText field to given value.
### GetSlugName
`func (o *SchemaAddTagReq) GetSlugName() string`
GetSlugName returns the SlugName field if non-nil, zero value otherwise.
### GetSlugNameOk
`func (o *SchemaAddTagReq) GetSlugNameOk() (*string, bool)`
GetSlugNameOk returns a tuple with the SlugName field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSlugName
`func (o *SchemaAddTagReq) SetSlugName(v string)`
SetSlugName sets SlugName field to given value.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

93
docs/SchemaAddUserReq.md Normal file
View File

@@ -0,0 +1,93 @@
# SchemaAddUserReq
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**DisplayName** | **string** | |
**Email** | **string** | |
**Password** | **string** | |
## Methods
### NewSchemaAddUserReq
`func NewSchemaAddUserReq(displayName string, email string, password string, ) *SchemaAddUserReq`
NewSchemaAddUserReq instantiates a new SchemaAddUserReq 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
### NewSchemaAddUserReqWithDefaults
`func NewSchemaAddUserReqWithDefaults() *SchemaAddUserReq`
NewSchemaAddUserReqWithDefaults instantiates a new SchemaAddUserReq 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
### GetDisplayName
`func (o *SchemaAddUserReq) GetDisplayName() string`
GetDisplayName returns the DisplayName field if non-nil, zero value otherwise.
### GetDisplayNameOk
`func (o *SchemaAddUserReq) GetDisplayNameOk() (*string, bool)`
GetDisplayNameOk returns a tuple with the DisplayName field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDisplayName
`func (o *SchemaAddUserReq) SetDisplayName(v string)`
SetDisplayName sets DisplayName field to given value.
### GetEmail
`func (o *SchemaAddUserReq) GetEmail() string`
GetEmail returns the Email field if non-nil, zero value otherwise.
### GetEmailOk
`func (o *SchemaAddUserReq) GetEmailOk() (*string, bool)`
GetEmailOk returns a tuple with the Email field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetEmail
`func (o *SchemaAddUserReq) SetEmail(v string)`
SetEmail sets Email field to given value.
### GetPassword
`func (o *SchemaAddUserReq) GetPassword() string`
GetPassword returns the Password field if non-nil, zero value otherwise.
### GetPasswordOk
`func (o *SchemaAddUserReq) GetPasswordOk() (*string, bool)`
GetPasswordOk returns a tuple with the Password field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetPassword
`func (o *SchemaAddUserReq) SetPassword(v string)`
SetPassword sets Password field to given value.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -0,0 +1,82 @@
# SchemaAdminSetAnswerStatusRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**AnswerId** | Pointer to **string** | | [optional]
**Status** | Pointer to **string** | | [optional]
## Methods
### NewSchemaAdminSetAnswerStatusRequest
`func NewSchemaAdminSetAnswerStatusRequest() *SchemaAdminSetAnswerStatusRequest`
NewSchemaAdminSetAnswerStatusRequest instantiates a new SchemaAdminSetAnswerStatusRequest 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
### NewSchemaAdminSetAnswerStatusRequestWithDefaults
`func NewSchemaAdminSetAnswerStatusRequestWithDefaults() *SchemaAdminSetAnswerStatusRequest`
NewSchemaAdminSetAnswerStatusRequestWithDefaults instantiates a new SchemaAdminSetAnswerStatusRequest 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
### GetAnswerId
`func (o *SchemaAdminSetAnswerStatusRequest) GetAnswerId() string`
GetAnswerId returns the AnswerId field if non-nil, zero value otherwise.
### GetAnswerIdOk
`func (o *SchemaAdminSetAnswerStatusRequest) GetAnswerIdOk() (*string, bool)`
GetAnswerIdOk returns a tuple with the AnswerId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetAnswerId
`func (o *SchemaAdminSetAnswerStatusRequest) SetAnswerId(v string)`
SetAnswerId sets AnswerId field to given value.
### HasAnswerId
`func (o *SchemaAdminSetAnswerStatusRequest) HasAnswerId() bool`
HasAnswerId returns a boolean if a field has been set.
### GetStatus
`func (o *SchemaAdminSetAnswerStatusRequest) GetStatus() string`
GetStatus returns the Status field if non-nil, zero value otherwise.
### GetStatusOk
`func (o *SchemaAdminSetAnswerStatusRequest) GetStatusOk() (*string, bool)`
GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetStatus
`func (o *SchemaAdminSetAnswerStatusRequest) SetStatus(v string)`
SetStatus sets Status field to given value.
### HasStatus
`func (o *SchemaAdminSetAnswerStatusRequest) HasStatus() bool`
HasStatus 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)

View File

@@ -0,0 +1,82 @@
# SchemaAdminSetQuestionStatusRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**QuestionId** | Pointer to **string** | | [optional]
**Status** | Pointer to **string** | | [optional]
## Methods
### NewSchemaAdminSetQuestionStatusRequest
`func NewSchemaAdminSetQuestionStatusRequest() *SchemaAdminSetQuestionStatusRequest`
NewSchemaAdminSetQuestionStatusRequest instantiates a new SchemaAdminSetQuestionStatusRequest 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
### NewSchemaAdminSetQuestionStatusRequestWithDefaults
`func NewSchemaAdminSetQuestionStatusRequestWithDefaults() *SchemaAdminSetQuestionStatusRequest`
NewSchemaAdminSetQuestionStatusRequestWithDefaults instantiates a new SchemaAdminSetQuestionStatusRequest 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
### GetQuestionId
`func (o *SchemaAdminSetQuestionStatusRequest) GetQuestionId() string`
GetQuestionId returns the QuestionId field if non-nil, zero value otherwise.
### GetQuestionIdOk
`func (o *SchemaAdminSetQuestionStatusRequest) GetQuestionIdOk() (*string, bool)`
GetQuestionIdOk returns a tuple with the QuestionId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetQuestionId
`func (o *SchemaAdminSetQuestionStatusRequest) SetQuestionId(v string)`
SetQuestionId sets QuestionId field to given value.
### HasQuestionId
`func (o *SchemaAdminSetQuestionStatusRequest) HasQuestionId() bool`
HasQuestionId returns a boolean if a field has been set.
### GetStatus
`func (o *SchemaAdminSetQuestionStatusRequest) GetStatus() string`
GetStatus returns the Status field if non-nil, zero value otherwise.
### GetStatusOk
`func (o *SchemaAdminSetQuestionStatusRequest) GetStatusOk() (*string, bool)`
GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetStatus
`func (o *SchemaAdminSetQuestionStatusRequest) SetStatus(v string)`
SetStatus sets Status field to given value.
### HasStatus
`func (o *SchemaAdminSetQuestionStatusRequest) HasStatus() bool`
HasStatus 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)

View File

@@ -0,0 +1,82 @@
# SchemaAnswerAcceptedReq
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**AnswerId** | Pointer to **string** | | [optional]
**QuestionId** | Pointer to **string** | | [optional]
## Methods
### NewSchemaAnswerAcceptedReq
`func NewSchemaAnswerAcceptedReq() *SchemaAnswerAcceptedReq`
NewSchemaAnswerAcceptedReq instantiates a new SchemaAnswerAcceptedReq 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
### NewSchemaAnswerAcceptedReqWithDefaults
`func NewSchemaAnswerAcceptedReqWithDefaults() *SchemaAnswerAcceptedReq`
NewSchemaAnswerAcceptedReqWithDefaults instantiates a new SchemaAnswerAcceptedReq 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
### GetAnswerId
`func (o *SchemaAnswerAcceptedReq) GetAnswerId() string`
GetAnswerId returns the AnswerId field if non-nil, zero value otherwise.
### GetAnswerIdOk
`func (o *SchemaAnswerAcceptedReq) GetAnswerIdOk() (*string, bool)`
GetAnswerIdOk returns a tuple with the AnswerId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetAnswerId
`func (o *SchemaAnswerAcceptedReq) SetAnswerId(v string)`
SetAnswerId sets AnswerId field to given value.
### HasAnswerId
`func (o *SchemaAnswerAcceptedReq) HasAnswerId() bool`
HasAnswerId returns a boolean if a field has been set.
### GetQuestionId
`func (o *SchemaAnswerAcceptedReq) GetQuestionId() string`
GetQuestionId returns the QuestionId field if non-nil, zero value otherwise.
### GetQuestionIdOk
`func (o *SchemaAnswerAcceptedReq) GetQuestionIdOk() (*string, bool)`
GetQuestionIdOk returns a tuple with the QuestionId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetQuestionId
`func (o *SchemaAnswerAcceptedReq) SetQuestionId(v string)`
SetQuestionId sets QuestionId field to given value.
### HasQuestionId
`func (o *SchemaAnswerAcceptedReq) HasQuestionId() bool`
HasQuestionId 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)

View File

@@ -0,0 +1,77 @@
# SchemaAnswerAddReq
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Content** | **string** | |
**QuestionId** | Pointer to **string** | | [optional]
## Methods
### NewSchemaAnswerAddReq
`func NewSchemaAnswerAddReq(content string, ) *SchemaAnswerAddReq`
NewSchemaAnswerAddReq instantiates a new SchemaAnswerAddReq 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
### NewSchemaAnswerAddReqWithDefaults
`func NewSchemaAnswerAddReqWithDefaults() *SchemaAnswerAddReq`
NewSchemaAnswerAddReqWithDefaults instantiates a new SchemaAnswerAddReq 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
### GetContent
`func (o *SchemaAnswerAddReq) GetContent() string`
GetContent returns the Content field if non-nil, zero value otherwise.
### GetContentOk
`func (o *SchemaAnswerAddReq) GetContentOk() (*string, bool)`
GetContentOk returns a tuple with the Content field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetContent
`func (o *SchemaAnswerAddReq) SetContent(v string)`
SetContent sets Content field to given value.
### GetQuestionId
`func (o *SchemaAnswerAddReq) GetQuestionId() string`
GetQuestionId returns the QuestionId field if non-nil, zero value otherwise.
### GetQuestionIdOk
`func (o *SchemaAnswerAddReq) GetQuestionIdOk() (*string, bool)`
GetQuestionIdOk returns a tuple with the QuestionId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetQuestionId
`func (o *SchemaAnswerAddReq) SetQuestionId(v string)`
SetQuestionId sets QuestionId field to given value.
### HasQuestionId
`func (o *SchemaAnswerAddReq) HasQuestionId() bool`
HasQuestionId 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)

View File

@@ -0,0 +1,155 @@
# SchemaAnswerUpdateReq
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Content** | **string** | |
**EditSummary** | Pointer to **string** | | [optional]
**Id** | Pointer to **string** | | [optional]
**QuestionId** | Pointer to **string** | | [optional]
**Title** | Pointer to **string** | | [optional]
## Methods
### NewSchemaAnswerUpdateReq
`func NewSchemaAnswerUpdateReq(content string, ) *SchemaAnswerUpdateReq`
NewSchemaAnswerUpdateReq instantiates a new SchemaAnswerUpdateReq 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
### NewSchemaAnswerUpdateReqWithDefaults
`func NewSchemaAnswerUpdateReqWithDefaults() *SchemaAnswerUpdateReq`
NewSchemaAnswerUpdateReqWithDefaults instantiates a new SchemaAnswerUpdateReq 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
### GetContent
`func (o *SchemaAnswerUpdateReq) GetContent() string`
GetContent returns the Content field if non-nil, zero value otherwise.
### GetContentOk
`func (o *SchemaAnswerUpdateReq) GetContentOk() (*string, bool)`
GetContentOk returns a tuple with the Content field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetContent
`func (o *SchemaAnswerUpdateReq) SetContent(v string)`
SetContent sets Content field to given value.
### GetEditSummary
`func (o *SchemaAnswerUpdateReq) GetEditSummary() string`
GetEditSummary returns the EditSummary field if non-nil, zero value otherwise.
### GetEditSummaryOk
`func (o *SchemaAnswerUpdateReq) GetEditSummaryOk() (*string, bool)`
GetEditSummaryOk returns a tuple with the EditSummary field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetEditSummary
`func (o *SchemaAnswerUpdateReq) SetEditSummary(v string)`
SetEditSummary sets EditSummary field to given value.
### HasEditSummary
`func (o *SchemaAnswerUpdateReq) HasEditSummary() bool`
HasEditSummary returns a boolean if a field has been set.
### GetId
`func (o *SchemaAnswerUpdateReq) GetId() string`
GetId returns the Id field if non-nil, zero value otherwise.
### GetIdOk
`func (o *SchemaAnswerUpdateReq) GetIdOk() (*string, bool)`
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetId
`func (o *SchemaAnswerUpdateReq) SetId(v string)`
SetId sets Id field to given value.
### HasId
`func (o *SchemaAnswerUpdateReq) HasId() bool`
HasId returns a boolean if a field has been set.
### GetQuestionId
`func (o *SchemaAnswerUpdateReq) GetQuestionId() string`
GetQuestionId returns the QuestionId field if non-nil, zero value otherwise.
### GetQuestionIdOk
`func (o *SchemaAnswerUpdateReq) GetQuestionIdOk() (*string, bool)`
GetQuestionIdOk returns a tuple with the QuestionId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetQuestionId
`func (o *SchemaAnswerUpdateReq) SetQuestionId(v string)`
SetQuestionId sets QuestionId field to given value.
### HasQuestionId
`func (o *SchemaAnswerUpdateReq) HasQuestionId() bool`
HasQuestionId returns a boolean if a field has been set.
### GetTitle
`func (o *SchemaAnswerUpdateReq) GetTitle() string`
GetTitle returns the Title field if non-nil, zero value otherwise.
### GetTitleOk
`func (o *SchemaAnswerUpdateReq) GetTitleOk() (*string, bool)`
GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetTitle
`func (o *SchemaAnswerUpdateReq) SetTitle(v string)`
SetTitle sets Title field to given value.
### HasTitle
`func (o *SchemaAnswerUpdateReq) HasTitle() bool`
HasTitle 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)

108
docs/SchemaAvatarInfo.md Normal file
View File

@@ -0,0 +1,108 @@
# SchemaAvatarInfo
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Custom** | Pointer to **string** | | [optional]
**Gravatar** | Pointer to **string** | | [optional]
**Type** | Pointer to **string** | | [optional]
## Methods
### NewSchemaAvatarInfo
`func NewSchemaAvatarInfo() *SchemaAvatarInfo`
NewSchemaAvatarInfo instantiates a new SchemaAvatarInfo 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
### NewSchemaAvatarInfoWithDefaults
`func NewSchemaAvatarInfoWithDefaults() *SchemaAvatarInfo`
NewSchemaAvatarInfoWithDefaults instantiates a new SchemaAvatarInfo 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
### GetCustom
`func (o *SchemaAvatarInfo) GetCustom() string`
GetCustom returns the Custom field if non-nil, zero value otherwise.
### GetCustomOk
`func (o *SchemaAvatarInfo) GetCustomOk() (*string, bool)`
GetCustomOk returns a tuple with the Custom field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCustom
`func (o *SchemaAvatarInfo) SetCustom(v string)`
SetCustom sets Custom field to given value.
### HasCustom
`func (o *SchemaAvatarInfo) HasCustom() bool`
HasCustom returns a boolean if a field has been set.
### GetGravatar
`func (o *SchemaAvatarInfo) GetGravatar() string`
GetGravatar returns the Gravatar field if non-nil, zero value otherwise.
### GetGravatarOk
`func (o *SchemaAvatarInfo) GetGravatarOk() (*string, bool)`
GetGravatarOk returns a tuple with the Gravatar field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetGravatar
`func (o *SchemaAvatarInfo) SetGravatar(v string)`
SetGravatar sets Gravatar field to given value.
### HasGravatar
`func (o *SchemaAvatarInfo) HasGravatar() bool`
HasGravatar returns a boolean if a field has been set.
### GetType
`func (o *SchemaAvatarInfo) GetType() string`
GetType returns the Type field if non-nil, zero value otherwise.
### GetTypeOk
`func (o *SchemaAvatarInfo) GetTypeOk() (*string, bool)`
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetType
`func (o *SchemaAvatarInfo) SetType(v string)`
SetType sets Type field to given value.
### HasType
`func (o *SchemaAvatarInfo) HasType() bool`
HasType 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)

View File

@@ -0,0 +1,103 @@
# SchemaCloseQuestionReq
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**CloseMsg** | Pointer to **string** | close_type | [optional]
**CloseType** | Pointer to **int32** | close_type | [optional]
**Id** | **string** | |
## Methods
### NewSchemaCloseQuestionReq
`func NewSchemaCloseQuestionReq(id string, ) *SchemaCloseQuestionReq`
NewSchemaCloseQuestionReq instantiates a new SchemaCloseQuestionReq 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
### NewSchemaCloseQuestionReqWithDefaults
`func NewSchemaCloseQuestionReqWithDefaults() *SchemaCloseQuestionReq`
NewSchemaCloseQuestionReqWithDefaults instantiates a new SchemaCloseQuestionReq 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
### GetCloseMsg
`func (o *SchemaCloseQuestionReq) GetCloseMsg() string`
GetCloseMsg returns the CloseMsg field if non-nil, zero value otherwise.
### GetCloseMsgOk
`func (o *SchemaCloseQuestionReq) GetCloseMsgOk() (*string, bool)`
GetCloseMsgOk returns a tuple with the CloseMsg field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCloseMsg
`func (o *SchemaCloseQuestionReq) SetCloseMsg(v string)`
SetCloseMsg sets CloseMsg field to given value.
### HasCloseMsg
`func (o *SchemaCloseQuestionReq) HasCloseMsg() bool`
HasCloseMsg returns a boolean if a field has been set.
### GetCloseType
`func (o *SchemaCloseQuestionReq) GetCloseType() int32`
GetCloseType returns the CloseType field if non-nil, zero value otherwise.
### GetCloseTypeOk
`func (o *SchemaCloseQuestionReq) GetCloseTypeOk() (*int32, bool)`
GetCloseTypeOk returns a tuple with the CloseType field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCloseType
`func (o *SchemaCloseQuestionReq) SetCloseType(v int32)`
SetCloseType sets CloseType field to given value.
### HasCloseType
`func (o *SchemaCloseQuestionReq) HasCloseType() bool`
HasCloseType returns a boolean if a field has been set.
### GetId
`func (o *SchemaCloseQuestionReq) GetId() string`
GetId returns the Id field if non-nil, zero value otherwise.
### GetIdOk
`func (o *SchemaCloseQuestionReq) GetIdOk() (*string, bool)`
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetId
`func (o *SchemaCloseQuestionReq) SetId(v string)`
SetId sets Id field to given value.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -0,0 +1,72 @@
# SchemaCollectionSwitchReq
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**GroupId** | **string** | user collection group TagID |
**ObjectId** | **string** | object TagID |
## Methods
### NewSchemaCollectionSwitchReq
`func NewSchemaCollectionSwitchReq(groupId string, objectId string, ) *SchemaCollectionSwitchReq`
NewSchemaCollectionSwitchReq instantiates a new SchemaCollectionSwitchReq 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
### NewSchemaCollectionSwitchReqWithDefaults
`func NewSchemaCollectionSwitchReqWithDefaults() *SchemaCollectionSwitchReq`
NewSchemaCollectionSwitchReqWithDefaults instantiates a new SchemaCollectionSwitchReq 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
### GetGroupId
`func (o *SchemaCollectionSwitchReq) GetGroupId() string`
GetGroupId returns the GroupId field if non-nil, zero value otherwise.
### GetGroupIdOk
`func (o *SchemaCollectionSwitchReq) GetGroupIdOk() (*string, bool)`
GetGroupIdOk returns a tuple with the GroupId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetGroupId
`func (o *SchemaCollectionSwitchReq) SetGroupId(v string)`
SetGroupId sets GroupId field to given value.
### GetObjectId
`func (o *SchemaCollectionSwitchReq) GetObjectId() string`
GetObjectId returns the ObjectId field if non-nil, zero value otherwise.
### GetObjectIdOk
`func (o *SchemaCollectionSwitchReq) GetObjectIdOk() (*string, bool)`
GetObjectIdOk returns a tuple with the ObjectId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetObjectId
`func (o *SchemaCollectionSwitchReq) SetObjectId(v string)`
SetObjectId sets ObjectId field to given value.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@@ -0,0 +1,108 @@
# SchemaCollectionSwitchResp
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ObjectCollectionCount** | Pointer to **string** | | [optional]
**ObjectId** | Pointer to **string** | | [optional]
**Switch** | Pointer to **bool** | | [optional]
## Methods
### NewSchemaCollectionSwitchResp
`func NewSchemaCollectionSwitchResp() *SchemaCollectionSwitchResp`
NewSchemaCollectionSwitchResp instantiates a new SchemaCollectionSwitchResp 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
### NewSchemaCollectionSwitchRespWithDefaults
`func NewSchemaCollectionSwitchRespWithDefaults() *SchemaCollectionSwitchResp`
NewSchemaCollectionSwitchRespWithDefaults instantiates a new SchemaCollectionSwitchResp 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
### GetObjectCollectionCount
`func (o *SchemaCollectionSwitchResp) GetObjectCollectionCount() string`
GetObjectCollectionCount returns the ObjectCollectionCount field if non-nil, zero value otherwise.
### GetObjectCollectionCountOk
`func (o *SchemaCollectionSwitchResp) GetObjectCollectionCountOk() (*string, bool)`
GetObjectCollectionCountOk returns a tuple with the ObjectCollectionCount field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetObjectCollectionCount
`func (o *SchemaCollectionSwitchResp) SetObjectCollectionCount(v string)`
SetObjectCollectionCount sets ObjectCollectionCount field to given value.
### HasObjectCollectionCount
`func (o *SchemaCollectionSwitchResp) HasObjectCollectionCount() bool`
HasObjectCollectionCount returns a boolean if a field has been set.
### GetObjectId
`func (o *SchemaCollectionSwitchResp) GetObjectId() string`
GetObjectId returns the ObjectId field if non-nil, zero value otherwise.
### GetObjectIdOk
`func (o *SchemaCollectionSwitchResp) GetObjectIdOk() (*string, bool)`
GetObjectIdOk returns a tuple with the ObjectId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetObjectId
`func (o *SchemaCollectionSwitchResp) SetObjectId(v string)`
SetObjectId sets ObjectId field to given value.
### HasObjectId
`func (o *SchemaCollectionSwitchResp) HasObjectId() bool`
HasObjectId returns a boolean if a field has been set.
### GetSwitch
`func (o *SchemaCollectionSwitchResp) GetSwitch() bool`
GetSwitch returns the Switch field if non-nil, zero value otherwise.
### GetSwitchOk
`func (o *SchemaCollectionSwitchResp) GetSwitchOk() (*bool, bool)`
GetSwitchOk returns a tuple with the Switch field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSwitch
`func (o *SchemaCollectionSwitchResp) SetSwitch(v bool)`
SetSwitch sets Switch field to given value.
### HasSwitch
`func (o *SchemaCollectionSwitchResp) HasSwitch() bool`
HasSwitch 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)

77
docs/SchemaFollowReq.md Normal file
View File

@@ -0,0 +1,77 @@
# SchemaFollowReq
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**IsCancel** | Pointer to **bool** | is cancel | [optional]
**ObjectId** | **string** | object id |
## Methods
### NewSchemaFollowReq
`func NewSchemaFollowReq(objectId string, ) *SchemaFollowReq`
NewSchemaFollowReq instantiates a new SchemaFollowReq 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
### NewSchemaFollowReqWithDefaults
`func NewSchemaFollowReqWithDefaults() *SchemaFollowReq`
NewSchemaFollowReqWithDefaults instantiates a new SchemaFollowReq 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
### GetIsCancel
`func (o *SchemaFollowReq) GetIsCancel() bool`
GetIsCancel returns the IsCancel field if non-nil, zero value otherwise.
### GetIsCancelOk
`func (o *SchemaFollowReq) GetIsCancelOk() (*bool, bool)`
GetIsCancelOk returns a tuple with the IsCancel field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetIsCancel
`func (o *SchemaFollowReq) SetIsCancel(v bool)`
SetIsCancel sets IsCancel field to given value.
### HasIsCancel
`func (o *SchemaFollowReq) HasIsCancel() bool`
HasIsCancel returns a boolean if a field has been set.
### GetObjectId
`func (o *SchemaFollowReq) GetObjectId() string`
GetObjectId returns the ObjectId field if non-nil, zero value otherwise.
### GetObjectIdOk
`func (o *SchemaFollowReq) GetObjectIdOk() (*string, bool)`
GetObjectIdOk returns a tuple with the ObjectId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetObjectId
`func (o *SchemaFollowReq) SetObjectId(v string)`
SetObjectId sets ObjectId field to given value.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

82
docs/SchemaFollowResp.md Normal file
View File

@@ -0,0 +1,82 @@
# SchemaFollowResp
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Follows** | Pointer to **int32** | the followers of object | [optional]
**IsFollowed** | Pointer to **bool** | if user is followed object will be true,otherwise false | [optional]
## Methods
### NewSchemaFollowResp
`func NewSchemaFollowResp() *SchemaFollowResp`
NewSchemaFollowResp instantiates a new SchemaFollowResp 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
### NewSchemaFollowRespWithDefaults
`func NewSchemaFollowRespWithDefaults() *SchemaFollowResp`
NewSchemaFollowRespWithDefaults instantiates a new SchemaFollowResp 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
### GetFollows
`func (o *SchemaFollowResp) GetFollows() int32`
GetFollows returns the Follows field if non-nil, zero value otherwise.
### GetFollowsOk
`func (o *SchemaFollowResp) GetFollowsOk() (*int32, bool)`
GetFollowsOk returns a tuple with the Follows field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetFollows
`func (o *SchemaFollowResp) SetFollows(v int32)`
SetFollows sets Follows field to given value.
### HasFollows
`func (o *SchemaFollowResp) HasFollows() bool`
HasFollows returns a boolean if a field has been set.
### GetIsFollowed
`func (o *SchemaFollowResp) GetIsFollowed() bool`
GetIsFollowed returns the IsFollowed field if non-nil, zero value otherwise.
### GetIsFollowedOk
`func (o *SchemaFollowResp) GetIsFollowedOk() (*bool, bool)`
GetIsFollowedOk returns a tuple with the IsFollowed field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetIsFollowed
`func (o *SchemaFollowResp) SetIsFollowed(v bool)`
SetIsFollowed sets IsFollowed field to given value.
### HasIsFollowed
`func (o *SchemaFollowResp) HasIsFollowed() bool`
HasIsFollowed 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)

View File

@@ -0,0 +1,264 @@
# SchemaGetCommentPersonalWithPageResp
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**AnswerId** | Pointer to **string** | answer id | [optional]
**CommentId** | Pointer to **string** | comment id | [optional]
**Content** | Pointer to **string** | content | [optional]
**CreatedAt** | Pointer to **int32** | create time | [optional]
**ObjectId** | Pointer to **string** | object id | [optional]
**ObjectType** | Pointer to **string** | object type | [optional]
**QuestionId** | Pointer to **string** | question id | [optional]
**Title** | Pointer to **string** | title | [optional]
**UrlTitle** | Pointer to **string** | url title | [optional]
## Methods
### NewSchemaGetCommentPersonalWithPageResp
`func NewSchemaGetCommentPersonalWithPageResp() *SchemaGetCommentPersonalWithPageResp`
NewSchemaGetCommentPersonalWithPageResp instantiates a new SchemaGetCommentPersonalWithPageResp 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
### NewSchemaGetCommentPersonalWithPageRespWithDefaults
`func NewSchemaGetCommentPersonalWithPageRespWithDefaults() *SchemaGetCommentPersonalWithPageResp`
NewSchemaGetCommentPersonalWithPageRespWithDefaults instantiates a new SchemaGetCommentPersonalWithPageResp 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
### GetAnswerId
`func (o *SchemaGetCommentPersonalWithPageResp) GetAnswerId() string`
GetAnswerId returns the AnswerId field if non-nil, zero value otherwise.
### GetAnswerIdOk
`func (o *SchemaGetCommentPersonalWithPageResp) GetAnswerIdOk() (*string, bool)`
GetAnswerIdOk returns a tuple with the AnswerId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetAnswerId
`func (o *SchemaGetCommentPersonalWithPageResp) SetAnswerId(v string)`
SetAnswerId sets AnswerId field to given value.
### HasAnswerId
`func (o *SchemaGetCommentPersonalWithPageResp) HasAnswerId() bool`
HasAnswerId returns a boolean if a field has been set.
### GetCommentId
`func (o *SchemaGetCommentPersonalWithPageResp) GetCommentId() string`
GetCommentId returns the CommentId field if non-nil, zero value otherwise.
### GetCommentIdOk
`func (o *SchemaGetCommentPersonalWithPageResp) GetCommentIdOk() (*string, bool)`
GetCommentIdOk returns a tuple with the CommentId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCommentId
`func (o *SchemaGetCommentPersonalWithPageResp) SetCommentId(v string)`
SetCommentId sets CommentId field to given value.
### HasCommentId
`func (o *SchemaGetCommentPersonalWithPageResp) HasCommentId() bool`
HasCommentId returns a boolean if a field has been set.
### GetContent
`func (o *SchemaGetCommentPersonalWithPageResp) GetContent() string`
GetContent returns the Content field if non-nil, zero value otherwise.
### GetContentOk
`func (o *SchemaGetCommentPersonalWithPageResp) GetContentOk() (*string, bool)`
GetContentOk returns a tuple with the Content field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetContent
`func (o *SchemaGetCommentPersonalWithPageResp) SetContent(v string)`
SetContent sets Content field to given value.
### HasContent
`func (o *SchemaGetCommentPersonalWithPageResp) HasContent() bool`
HasContent returns a boolean if a field has been set.
### GetCreatedAt
`func (o *SchemaGetCommentPersonalWithPageResp) GetCreatedAt() int32`
GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.
### GetCreatedAtOk
`func (o *SchemaGetCommentPersonalWithPageResp) GetCreatedAtOk() (*int32, bool)`
GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCreatedAt
`func (o *SchemaGetCommentPersonalWithPageResp) SetCreatedAt(v int32)`
SetCreatedAt sets CreatedAt field to given value.
### HasCreatedAt
`func (o *SchemaGetCommentPersonalWithPageResp) HasCreatedAt() bool`
HasCreatedAt returns a boolean if a field has been set.
### GetObjectId
`func (o *SchemaGetCommentPersonalWithPageResp) GetObjectId() string`
GetObjectId returns the ObjectId field if non-nil, zero value otherwise.
### GetObjectIdOk
`func (o *SchemaGetCommentPersonalWithPageResp) GetObjectIdOk() (*string, bool)`
GetObjectIdOk returns a tuple with the ObjectId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetObjectId
`func (o *SchemaGetCommentPersonalWithPageResp) SetObjectId(v string)`
SetObjectId sets ObjectId field to given value.
### HasObjectId
`func (o *SchemaGetCommentPersonalWithPageResp) HasObjectId() bool`
HasObjectId returns a boolean if a field has been set.
### GetObjectType
`func (o *SchemaGetCommentPersonalWithPageResp) GetObjectType() string`
GetObjectType returns the ObjectType field if non-nil, zero value otherwise.
### GetObjectTypeOk
`func (o *SchemaGetCommentPersonalWithPageResp) GetObjectTypeOk() (*string, bool)`
GetObjectTypeOk returns a tuple with the ObjectType field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetObjectType
`func (o *SchemaGetCommentPersonalWithPageResp) SetObjectType(v string)`
SetObjectType sets ObjectType field to given value.
### HasObjectType
`func (o *SchemaGetCommentPersonalWithPageResp) HasObjectType() bool`
HasObjectType returns a boolean if a field has been set.
### GetQuestionId
`func (o *SchemaGetCommentPersonalWithPageResp) GetQuestionId() string`
GetQuestionId returns the QuestionId field if non-nil, zero value otherwise.
### GetQuestionIdOk
`func (o *SchemaGetCommentPersonalWithPageResp) GetQuestionIdOk() (*string, bool)`
GetQuestionIdOk returns a tuple with the QuestionId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetQuestionId
`func (o *SchemaGetCommentPersonalWithPageResp) SetQuestionId(v string)`
SetQuestionId sets QuestionId field to given value.
### HasQuestionId
`func (o *SchemaGetCommentPersonalWithPageResp) HasQuestionId() bool`
HasQuestionId returns a boolean if a field has been set.
### GetTitle
`func (o *SchemaGetCommentPersonalWithPageResp) GetTitle() string`
GetTitle returns the Title field if non-nil, zero value otherwise.
### GetTitleOk
`func (o *SchemaGetCommentPersonalWithPageResp) GetTitleOk() (*string, bool)`
GetTitleOk returns a tuple with the Title field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetTitle
`func (o *SchemaGetCommentPersonalWithPageResp) SetTitle(v string)`
SetTitle sets Title field to given value.
### HasTitle
`func (o *SchemaGetCommentPersonalWithPageResp) HasTitle() bool`
HasTitle returns a boolean if a field has been set.
### GetUrlTitle
`func (o *SchemaGetCommentPersonalWithPageResp) GetUrlTitle() string`
GetUrlTitle returns the UrlTitle field if non-nil, zero value otherwise.
### GetUrlTitleOk
`func (o *SchemaGetCommentPersonalWithPageResp) GetUrlTitleOk() (*string, bool)`
GetUrlTitleOk returns a tuple with the UrlTitle field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetUrlTitle
`func (o *SchemaGetCommentPersonalWithPageResp) SetUrlTitle(v string)`
SetUrlTitle sets UrlTitle field to given value.
### HasUrlTitle
`func (o *SchemaGetCommentPersonalWithPageResp) HasUrlTitle() bool`
HasUrlTitle 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)

View File

@@ -0,0 +1,498 @@
# SchemaGetCommentResp
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**CommentId** | Pointer to **string** | comment id | [optional]
**CreatedAt** | Pointer to **int32** | create time | [optional]
**IsVote** | Pointer to **bool** | current user if already vote this comment | [optional]
**MemberActions** | Pointer to [**[]SchemaPermissionMemberAction**](SchemaPermissionMemberAction.md) | MemberActions | [optional]
**ObjectId** | Pointer to **string** | object id | [optional]
**OriginalText** | Pointer to **string** | original comment content | [optional]
**ParsedText** | Pointer to **string** | parsed comment content | [optional]
**ReplyCommentId** | Pointer to **string** | reply comment id | [optional]
**ReplyUserDisplayName** | Pointer to **string** | reply user display name | [optional]
**ReplyUserId** | Pointer to **string** | reply user id | [optional]
**ReplyUserStatus** | Pointer to **string** | reply user status | [optional]
**ReplyUsername** | Pointer to **string** | reply user username | [optional]
**UserAvatar** | Pointer to **string** | user avatar | [optional]
**UserDisplayName** | Pointer to **string** | user display name | [optional]
**UserId** | Pointer to **string** | user id | [optional]
**UserStatus** | Pointer to **string** | user status | [optional]
**Username** | Pointer to **string** | username | [optional]
**VoteCount** | Pointer to **int32** | user vote amount | [optional]
## Methods
### NewSchemaGetCommentResp
`func NewSchemaGetCommentResp() *SchemaGetCommentResp`
NewSchemaGetCommentResp instantiates a new SchemaGetCommentResp 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
### NewSchemaGetCommentRespWithDefaults
`func NewSchemaGetCommentRespWithDefaults() *SchemaGetCommentResp`
NewSchemaGetCommentRespWithDefaults instantiates a new SchemaGetCommentResp 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
### GetCommentId
`func (o *SchemaGetCommentResp) GetCommentId() string`
GetCommentId returns the CommentId field if non-nil, zero value otherwise.
### GetCommentIdOk
`func (o *SchemaGetCommentResp) GetCommentIdOk() (*string, bool)`
GetCommentIdOk returns a tuple with the CommentId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCommentId
`func (o *SchemaGetCommentResp) SetCommentId(v string)`
SetCommentId sets CommentId field to given value.
### HasCommentId
`func (o *SchemaGetCommentResp) HasCommentId() bool`
HasCommentId returns a boolean if a field has been set.
### GetCreatedAt
`func (o *SchemaGetCommentResp) GetCreatedAt() int32`
GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.
### GetCreatedAtOk
`func (o *SchemaGetCommentResp) GetCreatedAtOk() (*int32, bool)`
GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCreatedAt
`func (o *SchemaGetCommentResp) SetCreatedAt(v int32)`
SetCreatedAt sets CreatedAt field to given value.
### HasCreatedAt
`func (o *SchemaGetCommentResp) HasCreatedAt() bool`
HasCreatedAt returns a boolean if a field has been set.
### GetIsVote
`func (o *SchemaGetCommentResp) GetIsVote() bool`
GetIsVote returns the IsVote field if non-nil, zero value otherwise.
### GetIsVoteOk
`func (o *SchemaGetCommentResp) GetIsVoteOk() (*bool, bool)`
GetIsVoteOk returns a tuple with the IsVote field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetIsVote
`func (o *SchemaGetCommentResp) SetIsVote(v bool)`
SetIsVote sets IsVote field to given value.
### HasIsVote
`func (o *SchemaGetCommentResp) HasIsVote() bool`
HasIsVote returns a boolean if a field has been set.
### GetMemberActions
`func (o *SchemaGetCommentResp) GetMemberActions() []SchemaPermissionMemberAction`
GetMemberActions returns the MemberActions field if non-nil, zero value otherwise.
### GetMemberActionsOk
`func (o *SchemaGetCommentResp) GetMemberActionsOk() (*[]SchemaPermissionMemberAction, bool)`
GetMemberActionsOk returns a tuple with the MemberActions field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMemberActions
`func (o *SchemaGetCommentResp) SetMemberActions(v []SchemaPermissionMemberAction)`
SetMemberActions sets MemberActions field to given value.
### HasMemberActions
`func (o *SchemaGetCommentResp) HasMemberActions() bool`
HasMemberActions returns a boolean if a field has been set.
### GetObjectId
`func (o *SchemaGetCommentResp) GetObjectId() string`
GetObjectId returns the ObjectId field if non-nil, zero value otherwise.
### GetObjectIdOk
`func (o *SchemaGetCommentResp) GetObjectIdOk() (*string, bool)`
GetObjectIdOk returns a tuple with the ObjectId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetObjectId
`func (o *SchemaGetCommentResp) SetObjectId(v string)`
SetObjectId sets ObjectId field to given value.
### HasObjectId
`func (o *SchemaGetCommentResp) HasObjectId() bool`
HasObjectId returns a boolean if a field has been set.
### GetOriginalText
`func (o *SchemaGetCommentResp) GetOriginalText() string`
GetOriginalText returns the OriginalText field if non-nil, zero value otherwise.
### GetOriginalTextOk
`func (o *SchemaGetCommentResp) GetOriginalTextOk() (*string, bool)`
GetOriginalTextOk returns a tuple with the OriginalText field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetOriginalText
`func (o *SchemaGetCommentResp) SetOriginalText(v string)`
SetOriginalText sets OriginalText field to given value.
### HasOriginalText
`func (o *SchemaGetCommentResp) HasOriginalText() bool`
HasOriginalText returns a boolean if a field has been set.
### GetParsedText
`func (o *SchemaGetCommentResp) GetParsedText() string`
GetParsedText returns the ParsedText field if non-nil, zero value otherwise.
### GetParsedTextOk
`func (o *SchemaGetCommentResp) GetParsedTextOk() (*string, bool)`
GetParsedTextOk returns a tuple with the ParsedText field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetParsedText
`func (o *SchemaGetCommentResp) SetParsedText(v string)`
SetParsedText sets ParsedText field to given value.
### HasParsedText
`func (o *SchemaGetCommentResp) HasParsedText() bool`
HasParsedText returns a boolean if a field has been set.
### GetReplyCommentId
`func (o *SchemaGetCommentResp) GetReplyCommentId() string`
GetReplyCommentId returns the ReplyCommentId field if non-nil, zero value otherwise.
### GetReplyCommentIdOk
`func (o *SchemaGetCommentResp) GetReplyCommentIdOk() (*string, bool)`
GetReplyCommentIdOk returns a tuple with the ReplyCommentId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetReplyCommentId
`func (o *SchemaGetCommentResp) SetReplyCommentId(v string)`
SetReplyCommentId sets ReplyCommentId field to given value.
### HasReplyCommentId
`func (o *SchemaGetCommentResp) HasReplyCommentId() bool`
HasReplyCommentId returns a boolean if a field has been set.
### GetReplyUserDisplayName
`func (o *SchemaGetCommentResp) GetReplyUserDisplayName() string`
GetReplyUserDisplayName returns the ReplyUserDisplayName field if non-nil, zero value otherwise.
### GetReplyUserDisplayNameOk
`func (o *SchemaGetCommentResp) GetReplyUserDisplayNameOk() (*string, bool)`
GetReplyUserDisplayNameOk returns a tuple with the ReplyUserDisplayName field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetReplyUserDisplayName
`func (o *SchemaGetCommentResp) SetReplyUserDisplayName(v string)`
SetReplyUserDisplayName sets ReplyUserDisplayName field to given value.
### HasReplyUserDisplayName
`func (o *SchemaGetCommentResp) HasReplyUserDisplayName() bool`
HasReplyUserDisplayName returns a boolean if a field has been set.
### GetReplyUserId
`func (o *SchemaGetCommentResp) GetReplyUserId() string`
GetReplyUserId returns the ReplyUserId field if non-nil, zero value otherwise.
### GetReplyUserIdOk
`func (o *SchemaGetCommentResp) GetReplyUserIdOk() (*string, bool)`
GetReplyUserIdOk returns a tuple with the ReplyUserId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetReplyUserId
`func (o *SchemaGetCommentResp) SetReplyUserId(v string)`
SetReplyUserId sets ReplyUserId field to given value.
### HasReplyUserId
`func (o *SchemaGetCommentResp) HasReplyUserId() bool`
HasReplyUserId returns a boolean if a field has been set.
### GetReplyUserStatus
`func (o *SchemaGetCommentResp) GetReplyUserStatus() string`
GetReplyUserStatus returns the ReplyUserStatus field if non-nil, zero value otherwise.
### GetReplyUserStatusOk
`func (o *SchemaGetCommentResp) GetReplyUserStatusOk() (*string, bool)`
GetReplyUserStatusOk returns a tuple with the ReplyUserStatus field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetReplyUserStatus
`func (o *SchemaGetCommentResp) SetReplyUserStatus(v string)`
SetReplyUserStatus sets ReplyUserStatus field to given value.
### HasReplyUserStatus
`func (o *SchemaGetCommentResp) HasReplyUserStatus() bool`
HasReplyUserStatus returns a boolean if a field has been set.
### GetReplyUsername
`func (o *SchemaGetCommentResp) GetReplyUsername() string`
GetReplyUsername returns the ReplyUsername field if non-nil, zero value otherwise.
### GetReplyUsernameOk
`func (o *SchemaGetCommentResp) GetReplyUsernameOk() (*string, bool)`
GetReplyUsernameOk returns a tuple with the ReplyUsername field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetReplyUsername
`func (o *SchemaGetCommentResp) SetReplyUsername(v string)`
SetReplyUsername sets ReplyUsername field to given value.
### HasReplyUsername
`func (o *SchemaGetCommentResp) HasReplyUsername() bool`
HasReplyUsername returns a boolean if a field has been set.
### GetUserAvatar
`func (o *SchemaGetCommentResp) GetUserAvatar() string`
GetUserAvatar returns the UserAvatar field if non-nil, zero value otherwise.
### GetUserAvatarOk
`func (o *SchemaGetCommentResp) GetUserAvatarOk() (*string, bool)`
GetUserAvatarOk returns a tuple with the UserAvatar field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetUserAvatar
`func (o *SchemaGetCommentResp) SetUserAvatar(v string)`
SetUserAvatar sets UserAvatar field to given value.
### HasUserAvatar
`func (o *SchemaGetCommentResp) HasUserAvatar() bool`
HasUserAvatar returns a boolean if a field has been set.
### GetUserDisplayName
`func (o *SchemaGetCommentResp) GetUserDisplayName() string`
GetUserDisplayName returns the UserDisplayName field if non-nil, zero value otherwise.
### GetUserDisplayNameOk
`func (o *SchemaGetCommentResp) GetUserDisplayNameOk() (*string, bool)`
GetUserDisplayNameOk returns a tuple with the UserDisplayName field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetUserDisplayName
`func (o *SchemaGetCommentResp) SetUserDisplayName(v string)`
SetUserDisplayName sets UserDisplayName field to given value.
### HasUserDisplayName
`func (o *SchemaGetCommentResp) HasUserDisplayName() bool`
HasUserDisplayName returns a boolean if a field has been set.
### GetUserId
`func (o *SchemaGetCommentResp) GetUserId() string`
GetUserId returns the UserId field if non-nil, zero value otherwise.
### GetUserIdOk
`func (o *SchemaGetCommentResp) GetUserIdOk() (*string, bool)`
GetUserIdOk returns a tuple with the UserId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetUserId
`func (o *SchemaGetCommentResp) SetUserId(v string)`
SetUserId sets UserId field to given value.
### HasUserId
`func (o *SchemaGetCommentResp) HasUserId() bool`
HasUserId returns a boolean if a field has been set.
### GetUserStatus
`func (o *SchemaGetCommentResp) GetUserStatus() string`
GetUserStatus returns the UserStatus field if non-nil, zero value otherwise.
### GetUserStatusOk
`func (o *SchemaGetCommentResp) GetUserStatusOk() (*string, bool)`
GetUserStatusOk returns a tuple with the UserStatus field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetUserStatus
`func (o *SchemaGetCommentResp) SetUserStatus(v string)`
SetUserStatus sets UserStatus field to given value.
### HasUserStatus
`func (o *SchemaGetCommentResp) HasUserStatus() bool`
HasUserStatus returns a boolean if a field has been set.
### GetUsername
`func (o *SchemaGetCommentResp) GetUsername() string`
GetUsername returns the Username field if non-nil, zero value otherwise.
### GetUsernameOk
`func (o *SchemaGetCommentResp) GetUsernameOk() (*string, bool)`
GetUsernameOk returns a tuple with the Username field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetUsername
`func (o *SchemaGetCommentResp) SetUsername(v string)`
SetUsername sets Username field to given value.
### HasUsername
`func (o *SchemaGetCommentResp) HasUsername() bool`
HasUsername returns a boolean if a field has been set.
### GetVoteCount
`func (o *SchemaGetCommentResp) GetVoteCount() int32`
GetVoteCount returns the VoteCount field if non-nil, zero value otherwise.
### GetVoteCountOk
`func (o *SchemaGetCommentResp) GetVoteCountOk() (*int32, bool)`
GetVoteCountOk returns a tuple with the VoteCount field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetVoteCount
`func (o *SchemaGetCommentResp) SetVoteCount(v int32)`
SetVoteCount sets VoteCount field to given value.
### HasVoteCount
`func (o *SchemaGetCommentResp) HasVoteCount() bool`
HasVoteCount 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)

View File

@@ -0,0 +1,186 @@
# SchemaGetFollowingTagsResp
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**DisplayName** | Pointer to **string** | display name | [optional]
**MainTagSlugName** | Pointer to **string** | if main tag slug name is not empty, this tag is synonymous with the main tag | [optional]
**Recommend** | Pointer to **bool** | | [optional]
**Reserved** | Pointer to **bool** | | [optional]
**SlugName** | Pointer to **string** | slug name | [optional]
**TagId** | Pointer to **string** | tag id | [optional]
## Methods
### NewSchemaGetFollowingTagsResp
`func NewSchemaGetFollowingTagsResp() *SchemaGetFollowingTagsResp`
NewSchemaGetFollowingTagsResp instantiates a new SchemaGetFollowingTagsResp 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
### NewSchemaGetFollowingTagsRespWithDefaults
`func NewSchemaGetFollowingTagsRespWithDefaults() *SchemaGetFollowingTagsResp`
NewSchemaGetFollowingTagsRespWithDefaults instantiates a new SchemaGetFollowingTagsResp 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
### GetDisplayName
`func (o *SchemaGetFollowingTagsResp) GetDisplayName() string`
GetDisplayName returns the DisplayName field if non-nil, zero value otherwise.
### GetDisplayNameOk
`func (o *SchemaGetFollowingTagsResp) GetDisplayNameOk() (*string, bool)`
GetDisplayNameOk returns a tuple with the DisplayName field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDisplayName
`func (o *SchemaGetFollowingTagsResp) SetDisplayName(v string)`
SetDisplayName sets DisplayName field to given value.
### HasDisplayName
`func (o *SchemaGetFollowingTagsResp) HasDisplayName() bool`
HasDisplayName returns a boolean if a field has been set.
### GetMainTagSlugName
`func (o *SchemaGetFollowingTagsResp) GetMainTagSlugName() string`
GetMainTagSlugName returns the MainTagSlugName field if non-nil, zero value otherwise.
### GetMainTagSlugNameOk
`func (o *SchemaGetFollowingTagsResp) GetMainTagSlugNameOk() (*string, bool)`
GetMainTagSlugNameOk returns a tuple with the MainTagSlugName field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMainTagSlugName
`func (o *SchemaGetFollowingTagsResp) SetMainTagSlugName(v string)`
SetMainTagSlugName sets MainTagSlugName field to given value.
### HasMainTagSlugName
`func (o *SchemaGetFollowingTagsResp) HasMainTagSlugName() bool`
HasMainTagSlugName returns a boolean if a field has been set.
### GetRecommend
`func (o *SchemaGetFollowingTagsResp) GetRecommend() bool`
GetRecommend returns the Recommend field if non-nil, zero value otherwise.
### GetRecommendOk
`func (o *SchemaGetFollowingTagsResp) GetRecommendOk() (*bool, bool)`
GetRecommendOk returns a tuple with the Recommend field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRecommend
`func (o *SchemaGetFollowingTagsResp) SetRecommend(v bool)`
SetRecommend sets Recommend field to given value.
### HasRecommend
`func (o *SchemaGetFollowingTagsResp) HasRecommend() bool`
HasRecommend returns a boolean if a field has been set.
### GetReserved
`func (o *SchemaGetFollowingTagsResp) GetReserved() bool`
GetReserved returns the Reserved field if non-nil, zero value otherwise.
### GetReservedOk
`func (o *SchemaGetFollowingTagsResp) GetReservedOk() (*bool, bool)`
GetReservedOk returns a tuple with the Reserved field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetReserved
`func (o *SchemaGetFollowingTagsResp) SetReserved(v bool)`
SetReserved sets Reserved field to given value.
### HasReserved
`func (o *SchemaGetFollowingTagsResp) HasReserved() bool`
HasReserved returns a boolean if a field has been set.
### GetSlugName
`func (o *SchemaGetFollowingTagsResp) GetSlugName() string`
GetSlugName returns the SlugName field if non-nil, zero value otherwise.
### GetSlugNameOk
`func (o *SchemaGetFollowingTagsResp) GetSlugNameOk() (*string, bool)`
GetSlugNameOk returns a tuple with the SlugName field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetSlugName
`func (o *SchemaGetFollowingTagsResp) SetSlugName(v string)`
SetSlugName sets SlugName field to given value.
### HasSlugName
`func (o *SchemaGetFollowingTagsResp) HasSlugName() bool`
HasSlugName returns a boolean if a field has been set.
### GetTagId
`func (o *SchemaGetFollowingTagsResp) GetTagId() string`
GetTagId returns the TagId field if non-nil, zero value otherwise.
### GetTagIdOk
`func (o *SchemaGetFollowingTagsResp) GetTagIdOk() (*string, bool)`
GetTagIdOk returns a tuple with the TagId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetTagId
`func (o *SchemaGetFollowingTagsResp) SetTagId(v string)`
SetTagId sets TagId field to given value.
### HasTagId
`func (o *SchemaGetFollowingTagsResp) HasTagId() bool`
HasTagId 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)

View File

@@ -0,0 +1,82 @@
# SchemaGetObjectTimelineResp
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ObjectInfo** | Pointer to [**SchemaActObjectInfo**](SchemaActObjectInfo.md) | | [optional]
**Timeline** | Pointer to [**[]SchemaActObjectTimeline**](SchemaActObjectTimeline.md) | | [optional]
## Methods
### NewSchemaGetObjectTimelineResp
`func NewSchemaGetObjectTimelineResp() *SchemaGetObjectTimelineResp`
NewSchemaGetObjectTimelineResp instantiates a new SchemaGetObjectTimelineResp 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
### NewSchemaGetObjectTimelineRespWithDefaults
`func NewSchemaGetObjectTimelineRespWithDefaults() *SchemaGetObjectTimelineResp`
NewSchemaGetObjectTimelineRespWithDefaults instantiates a new SchemaGetObjectTimelineResp 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
### GetObjectInfo
`func (o *SchemaGetObjectTimelineResp) GetObjectInfo() SchemaActObjectInfo`
GetObjectInfo returns the ObjectInfo field if non-nil, zero value otherwise.
### GetObjectInfoOk
`func (o *SchemaGetObjectTimelineResp) GetObjectInfoOk() (*SchemaActObjectInfo, bool)`
GetObjectInfoOk returns a tuple with the ObjectInfo field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetObjectInfo
`func (o *SchemaGetObjectTimelineResp) SetObjectInfo(v SchemaActObjectInfo)`
SetObjectInfo sets ObjectInfo field to given value.
### HasObjectInfo
`func (o *SchemaGetObjectTimelineResp) HasObjectInfo() bool`
HasObjectInfo returns a boolean if a field has been set.
### GetTimeline
`func (o *SchemaGetObjectTimelineResp) GetTimeline() []SchemaActObjectTimeline`
GetTimeline returns the Timeline field if non-nil, zero value otherwise.
### GetTimelineOk
`func (o *SchemaGetObjectTimelineResp) GetTimelineOk() (*[]SchemaActObjectTimeline, bool)`
GetTimelineOk returns a tuple with the Timeline field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetTimeline
`func (o *SchemaGetObjectTimelineResp) SetTimeline(v []SchemaActObjectTimeline)`
SetTimeline sets Timeline field to given value.
### HasTimeline
`func (o *SchemaGetObjectTimelineResp) HasTimeline() bool`
HasTimeline 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)

View File

@@ -0,0 +1,472 @@
# SchemaGetOtherUserInfoByUsernameResp
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**AnswerCount** | Pointer to **int32** | answer count | [optional]
**Avatar** | Pointer to **string** | avatar | [optional]
**Bio** | Pointer to **string** | bio markdown | [optional]
**BioHtml** | Pointer to **string** | bio html | [optional]
**CreatedAt** | Pointer to **int32** | create time | [optional]
**DisplayName** | Pointer to **string** | display name | [optional]
**FollowCount** | Pointer to **int32** | email follow count | [optional]
**Id** | Pointer to **string** | user id | [optional]
**LastLoginDate** | Pointer to **int32** | last login date | [optional]
**Location** | Pointer to **string** | location | [optional]
**Mobile** | Pointer to **string** | mobile | [optional]
**QuestionCount** | Pointer to **int32** | question count | [optional]
**Rank** | Pointer to **int32** | rank | [optional]
**Status** | Pointer to **string** | | [optional]
**StatusMsg** | Pointer to **string** | | [optional]
**Username** | Pointer to **string** | username | [optional]
**Website** | Pointer to **string** | website | [optional]
## Methods
### NewSchemaGetOtherUserInfoByUsernameResp
`func NewSchemaGetOtherUserInfoByUsernameResp() *SchemaGetOtherUserInfoByUsernameResp`
NewSchemaGetOtherUserInfoByUsernameResp instantiates a new SchemaGetOtherUserInfoByUsernameResp 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
### NewSchemaGetOtherUserInfoByUsernameRespWithDefaults
`func NewSchemaGetOtherUserInfoByUsernameRespWithDefaults() *SchemaGetOtherUserInfoByUsernameResp`
NewSchemaGetOtherUserInfoByUsernameRespWithDefaults instantiates a new SchemaGetOtherUserInfoByUsernameResp 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
### GetAnswerCount
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetAnswerCount() int32`
GetAnswerCount returns the AnswerCount field if non-nil, zero value otherwise.
### GetAnswerCountOk
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetAnswerCountOk() (*int32, bool)`
GetAnswerCountOk returns a tuple with the AnswerCount field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetAnswerCount
`func (o *SchemaGetOtherUserInfoByUsernameResp) SetAnswerCount(v int32)`
SetAnswerCount sets AnswerCount field to given value.
### HasAnswerCount
`func (o *SchemaGetOtherUserInfoByUsernameResp) HasAnswerCount() bool`
HasAnswerCount returns a boolean if a field has been set.
### GetAvatar
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetAvatar() string`
GetAvatar returns the Avatar field if non-nil, zero value otherwise.
### GetAvatarOk
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetAvatarOk() (*string, bool)`
GetAvatarOk returns a tuple with the Avatar field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetAvatar
`func (o *SchemaGetOtherUserInfoByUsernameResp) SetAvatar(v string)`
SetAvatar sets Avatar field to given value.
### HasAvatar
`func (o *SchemaGetOtherUserInfoByUsernameResp) HasAvatar() bool`
HasAvatar returns a boolean if a field has been set.
### GetBio
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetBio() string`
GetBio returns the Bio field if non-nil, zero value otherwise.
### GetBioOk
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetBioOk() (*string, bool)`
GetBioOk returns a tuple with the Bio field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetBio
`func (o *SchemaGetOtherUserInfoByUsernameResp) SetBio(v string)`
SetBio sets Bio field to given value.
### HasBio
`func (o *SchemaGetOtherUserInfoByUsernameResp) HasBio() bool`
HasBio returns a boolean if a field has been set.
### GetBioHtml
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetBioHtml() string`
GetBioHtml returns the BioHtml field if non-nil, zero value otherwise.
### GetBioHtmlOk
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetBioHtmlOk() (*string, bool)`
GetBioHtmlOk returns a tuple with the BioHtml field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetBioHtml
`func (o *SchemaGetOtherUserInfoByUsernameResp) SetBioHtml(v string)`
SetBioHtml sets BioHtml field to given value.
### HasBioHtml
`func (o *SchemaGetOtherUserInfoByUsernameResp) HasBioHtml() bool`
HasBioHtml returns a boolean if a field has been set.
### GetCreatedAt
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetCreatedAt() int32`
GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.
### GetCreatedAtOk
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetCreatedAtOk() (*int32, bool)`
GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetCreatedAt
`func (o *SchemaGetOtherUserInfoByUsernameResp) SetCreatedAt(v int32)`
SetCreatedAt sets CreatedAt field to given value.
### HasCreatedAt
`func (o *SchemaGetOtherUserInfoByUsernameResp) HasCreatedAt() bool`
HasCreatedAt returns a boolean if a field has been set.
### GetDisplayName
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetDisplayName() string`
GetDisplayName returns the DisplayName field if non-nil, zero value otherwise.
### GetDisplayNameOk
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetDisplayNameOk() (*string, bool)`
GetDisplayNameOk returns a tuple with the DisplayName field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetDisplayName
`func (o *SchemaGetOtherUserInfoByUsernameResp) SetDisplayName(v string)`
SetDisplayName sets DisplayName field to given value.
### HasDisplayName
`func (o *SchemaGetOtherUserInfoByUsernameResp) HasDisplayName() bool`
HasDisplayName returns a boolean if a field has been set.
### GetFollowCount
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetFollowCount() int32`
GetFollowCount returns the FollowCount field if non-nil, zero value otherwise.
### GetFollowCountOk
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetFollowCountOk() (*int32, bool)`
GetFollowCountOk returns a tuple with the FollowCount field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetFollowCount
`func (o *SchemaGetOtherUserInfoByUsernameResp) SetFollowCount(v int32)`
SetFollowCount sets FollowCount field to given value.
### HasFollowCount
`func (o *SchemaGetOtherUserInfoByUsernameResp) HasFollowCount() bool`
HasFollowCount returns a boolean if a field has been set.
### GetId
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetId() string`
GetId returns the Id field if non-nil, zero value otherwise.
### GetIdOk
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetIdOk() (*string, bool)`
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetId
`func (o *SchemaGetOtherUserInfoByUsernameResp) SetId(v string)`
SetId sets Id field to given value.
### HasId
`func (o *SchemaGetOtherUserInfoByUsernameResp) HasId() bool`
HasId returns a boolean if a field has been set.
### GetLastLoginDate
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetLastLoginDate() int32`
GetLastLoginDate returns the LastLoginDate field if non-nil, zero value otherwise.
### GetLastLoginDateOk
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetLastLoginDateOk() (*int32, bool)`
GetLastLoginDateOk returns a tuple with the LastLoginDate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetLastLoginDate
`func (o *SchemaGetOtherUserInfoByUsernameResp) SetLastLoginDate(v int32)`
SetLastLoginDate sets LastLoginDate field to given value.
### HasLastLoginDate
`func (o *SchemaGetOtherUserInfoByUsernameResp) HasLastLoginDate() bool`
HasLastLoginDate returns a boolean if a field has been set.
### GetLocation
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetLocation() string`
GetLocation returns the Location field if non-nil, zero value otherwise.
### GetLocationOk
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetLocationOk() (*string, bool)`
GetLocationOk returns a tuple with the Location field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetLocation
`func (o *SchemaGetOtherUserInfoByUsernameResp) SetLocation(v string)`
SetLocation sets Location field to given value.
### HasLocation
`func (o *SchemaGetOtherUserInfoByUsernameResp) HasLocation() bool`
HasLocation returns a boolean if a field has been set.
### GetMobile
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetMobile() string`
GetMobile returns the Mobile field if non-nil, zero value otherwise.
### GetMobileOk
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetMobileOk() (*string, bool)`
GetMobileOk returns a tuple with the Mobile field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMobile
`func (o *SchemaGetOtherUserInfoByUsernameResp) SetMobile(v string)`
SetMobile sets Mobile field to given value.
### HasMobile
`func (o *SchemaGetOtherUserInfoByUsernameResp) HasMobile() bool`
HasMobile returns a boolean if a field has been set.
### GetQuestionCount
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetQuestionCount() int32`
GetQuestionCount returns the QuestionCount field if non-nil, zero value otherwise.
### GetQuestionCountOk
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetQuestionCountOk() (*int32, bool)`
GetQuestionCountOk returns a tuple with the QuestionCount field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetQuestionCount
`func (o *SchemaGetOtherUserInfoByUsernameResp) SetQuestionCount(v int32)`
SetQuestionCount sets QuestionCount field to given value.
### HasQuestionCount
`func (o *SchemaGetOtherUserInfoByUsernameResp) HasQuestionCount() bool`
HasQuestionCount returns a boolean if a field has been set.
### GetRank
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetRank() int32`
GetRank returns the Rank field if non-nil, zero value otherwise.
### GetRankOk
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetRankOk() (*int32, bool)`
GetRankOk returns a tuple with the Rank field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetRank
`func (o *SchemaGetOtherUserInfoByUsernameResp) SetRank(v int32)`
SetRank sets Rank field to given value.
### HasRank
`func (o *SchemaGetOtherUserInfoByUsernameResp) HasRank() bool`
HasRank returns a boolean if a field has been set.
### GetStatus
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetStatus() string`
GetStatus returns the Status field if non-nil, zero value otherwise.
### GetStatusOk
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetStatusOk() (*string, bool)`
GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetStatus
`func (o *SchemaGetOtherUserInfoByUsernameResp) SetStatus(v string)`
SetStatus sets Status field to given value.
### HasStatus
`func (o *SchemaGetOtherUserInfoByUsernameResp) HasStatus() bool`
HasStatus returns a boolean if a field has been set.
### GetStatusMsg
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetStatusMsg() string`
GetStatusMsg returns the StatusMsg field if non-nil, zero value otherwise.
### GetStatusMsgOk
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetStatusMsgOk() (*string, bool)`
GetStatusMsgOk returns a tuple with the StatusMsg field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetStatusMsg
`func (o *SchemaGetOtherUserInfoByUsernameResp) SetStatusMsg(v string)`
SetStatusMsg sets StatusMsg field to given value.
### HasStatusMsg
`func (o *SchemaGetOtherUserInfoByUsernameResp) HasStatusMsg() bool`
HasStatusMsg returns a boolean if a field has been set.
### GetUsername
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetUsername() string`
GetUsername returns the Username field if non-nil, zero value otherwise.
### GetUsernameOk
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetUsernameOk() (*string, bool)`
GetUsernameOk returns a tuple with the Username field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetUsername
`func (o *SchemaGetOtherUserInfoByUsernameResp) SetUsername(v string)`
SetUsername sets Username field to given value.
### HasUsername
`func (o *SchemaGetOtherUserInfoByUsernameResp) HasUsername() bool`
HasUsername returns a boolean if a field has been set.
### GetWebsite
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetWebsite() string`
GetWebsite returns the Website field if non-nil, zero value otherwise.
### GetWebsiteOk
`func (o *SchemaGetOtherUserInfoByUsernameResp) GetWebsiteOk() (*string, bool)`
GetWebsiteOk returns a tuple with the Website field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetWebsite
`func (o *SchemaGetOtherUserInfoByUsernameResp) SetWebsite(v string)`
SetWebsite sets Website field to given value.
### HasWebsite
`func (o *SchemaGetOtherUserInfoByUsernameResp) HasWebsite() bool`
HasWebsite 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)

View File

@@ -0,0 +1,56 @@
# SchemaGetOtherUserInfoResp
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Info** | Pointer to [**SchemaGetOtherUserInfoByUsernameResp**](SchemaGetOtherUserInfoByUsernameResp.md) | | [optional]
## Methods
### NewSchemaGetOtherUserInfoResp
`func NewSchemaGetOtherUserInfoResp() *SchemaGetOtherUserInfoResp`
NewSchemaGetOtherUserInfoResp instantiates a new SchemaGetOtherUserInfoResp 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
### NewSchemaGetOtherUserInfoRespWithDefaults
`func NewSchemaGetOtherUserInfoRespWithDefaults() *SchemaGetOtherUserInfoResp`
NewSchemaGetOtherUserInfoRespWithDefaults instantiates a new SchemaGetOtherUserInfoResp 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
### GetInfo
`func (o *SchemaGetOtherUserInfoResp) GetInfo() SchemaGetOtherUserInfoByUsernameResp`
GetInfo returns the Info field if non-nil, zero value otherwise.
### GetInfoOk
`func (o *SchemaGetOtherUserInfoResp) GetInfoOk() (*SchemaGetOtherUserInfoByUsernameResp, bool)`
GetInfoOk returns a tuple with the Info field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetInfo
`func (o *SchemaGetOtherUserInfoResp) SetInfo(v SchemaGetOtherUserInfoByUsernameResp)`
SetInfo sets Info field to given value.
### HasInfo
`func (o *SchemaGetOtherUserInfoResp) HasInfo() bool`
HasInfo 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)

Some files were not shown because too many files have changed in this diff Show More