first version
This commit is contained in:
446
docs/SchemaGetTagResp.md
Normal file
446
docs/SchemaGetTagResp.md
Normal file
@@ -0,0 +1,446 @@
|
||||
# SchemaGetTagResp
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**CreatedAt** | Pointer to **int32** | created time | [optional]
|
||||
**Description** | Pointer to **string** | description text | [optional]
|
||||
**DisplayName** | Pointer to **string** | display name | [optional]
|
||||
**Excerpt** | Pointer to **string** | excerpt | [optional]
|
||||
**FollowCount** | Pointer to **int32** | follower amount | [optional]
|
||||
**IsFollower** | Pointer to **bool** | is follower | [optional]
|
||||
**MainTagSlugName** | Pointer to **string** | if main tag slug name is not empty, this tag is synonymous with the main tag | [optional]
|
||||
**MemberActions** | Pointer to [**[]SchemaPermissionMemberAction**](SchemaPermissionMemberAction.md) | MemberActions | [optional]
|
||||
**OriginalText** | Pointer to **string** | original text | [optional]
|
||||
**ParsedText** | Pointer to **string** | parsed text | [optional]
|
||||
**QuestionCount** | Pointer to **int32** | question amount | [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]
|
||||
**UpdatedAt** | Pointer to **int32** | updated time | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewSchemaGetTagResp
|
||||
|
||||
`func NewSchemaGetTagResp() *SchemaGetTagResp`
|
||||
|
||||
NewSchemaGetTagResp instantiates a new SchemaGetTagResp 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
|
||||
|
||||
### NewSchemaGetTagRespWithDefaults
|
||||
|
||||
`func NewSchemaGetTagRespWithDefaults() *SchemaGetTagResp`
|
||||
|
||||
NewSchemaGetTagRespWithDefaults instantiates a new SchemaGetTagResp 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
|
||||
|
||||
### GetCreatedAt
|
||||
|
||||
`func (o *SchemaGetTagResp) GetCreatedAt() int32`
|
||||
|
||||
GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCreatedAtOk
|
||||
|
||||
`func (o *SchemaGetTagResp) 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 *SchemaGetTagResp) SetCreatedAt(v int32)`
|
||||
|
||||
SetCreatedAt sets CreatedAt field to given value.
|
||||
|
||||
### HasCreatedAt
|
||||
|
||||
`func (o *SchemaGetTagResp) HasCreatedAt() bool`
|
||||
|
||||
HasCreatedAt returns a boolean if a field has been set.
|
||||
|
||||
### GetDescription
|
||||
|
||||
`func (o *SchemaGetTagResp) GetDescription() string`
|
||||
|
||||
GetDescription returns the Description field if non-nil, zero value otherwise.
|
||||
|
||||
### GetDescriptionOk
|
||||
|
||||
`func (o *SchemaGetTagResp) GetDescriptionOk() (*string, bool)`
|
||||
|
||||
GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetDescription
|
||||
|
||||
`func (o *SchemaGetTagResp) SetDescription(v string)`
|
||||
|
||||
SetDescription sets Description field to given value.
|
||||
|
||||
### HasDescription
|
||||
|
||||
`func (o *SchemaGetTagResp) HasDescription() bool`
|
||||
|
||||
HasDescription returns a boolean if a field has been set.
|
||||
|
||||
### GetDisplayName
|
||||
|
||||
`func (o *SchemaGetTagResp) GetDisplayName() string`
|
||||
|
||||
GetDisplayName returns the DisplayName field if non-nil, zero value otherwise.
|
||||
|
||||
### GetDisplayNameOk
|
||||
|
||||
`func (o *SchemaGetTagResp) 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 *SchemaGetTagResp) SetDisplayName(v string)`
|
||||
|
||||
SetDisplayName sets DisplayName field to given value.
|
||||
|
||||
### HasDisplayName
|
||||
|
||||
`func (o *SchemaGetTagResp) HasDisplayName() bool`
|
||||
|
||||
HasDisplayName returns a boolean if a field has been set.
|
||||
|
||||
### GetExcerpt
|
||||
|
||||
`func (o *SchemaGetTagResp) GetExcerpt() string`
|
||||
|
||||
GetExcerpt returns the Excerpt field if non-nil, zero value otherwise.
|
||||
|
||||
### GetExcerptOk
|
||||
|
||||
`func (o *SchemaGetTagResp) GetExcerptOk() (*string, bool)`
|
||||
|
||||
GetExcerptOk returns a tuple with the Excerpt field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetExcerpt
|
||||
|
||||
`func (o *SchemaGetTagResp) SetExcerpt(v string)`
|
||||
|
||||
SetExcerpt sets Excerpt field to given value.
|
||||
|
||||
### HasExcerpt
|
||||
|
||||
`func (o *SchemaGetTagResp) HasExcerpt() bool`
|
||||
|
||||
HasExcerpt returns a boolean if a field has been set.
|
||||
|
||||
### GetFollowCount
|
||||
|
||||
`func (o *SchemaGetTagResp) GetFollowCount() int32`
|
||||
|
||||
GetFollowCount returns the FollowCount field if non-nil, zero value otherwise.
|
||||
|
||||
### GetFollowCountOk
|
||||
|
||||
`func (o *SchemaGetTagResp) 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 *SchemaGetTagResp) SetFollowCount(v int32)`
|
||||
|
||||
SetFollowCount sets FollowCount field to given value.
|
||||
|
||||
### HasFollowCount
|
||||
|
||||
`func (o *SchemaGetTagResp) HasFollowCount() bool`
|
||||
|
||||
HasFollowCount returns a boolean if a field has been set.
|
||||
|
||||
### GetIsFollower
|
||||
|
||||
`func (o *SchemaGetTagResp) GetIsFollower() bool`
|
||||
|
||||
GetIsFollower returns the IsFollower field if non-nil, zero value otherwise.
|
||||
|
||||
### GetIsFollowerOk
|
||||
|
||||
`func (o *SchemaGetTagResp) GetIsFollowerOk() (*bool, bool)`
|
||||
|
||||
GetIsFollowerOk returns a tuple with the IsFollower field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetIsFollower
|
||||
|
||||
`func (o *SchemaGetTagResp) SetIsFollower(v bool)`
|
||||
|
||||
SetIsFollower sets IsFollower field to given value.
|
||||
|
||||
### HasIsFollower
|
||||
|
||||
`func (o *SchemaGetTagResp) HasIsFollower() bool`
|
||||
|
||||
HasIsFollower returns a boolean if a field has been set.
|
||||
|
||||
### GetMainTagSlugName
|
||||
|
||||
`func (o *SchemaGetTagResp) GetMainTagSlugName() string`
|
||||
|
||||
GetMainTagSlugName returns the MainTagSlugName field if non-nil, zero value otherwise.
|
||||
|
||||
### GetMainTagSlugNameOk
|
||||
|
||||
`func (o *SchemaGetTagResp) 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 *SchemaGetTagResp) SetMainTagSlugName(v string)`
|
||||
|
||||
SetMainTagSlugName sets MainTagSlugName field to given value.
|
||||
|
||||
### HasMainTagSlugName
|
||||
|
||||
`func (o *SchemaGetTagResp) HasMainTagSlugName() bool`
|
||||
|
||||
HasMainTagSlugName returns a boolean if a field has been set.
|
||||
|
||||
### GetMemberActions
|
||||
|
||||
`func (o *SchemaGetTagResp) GetMemberActions() []SchemaPermissionMemberAction`
|
||||
|
||||
GetMemberActions returns the MemberActions field if non-nil, zero value otherwise.
|
||||
|
||||
### GetMemberActionsOk
|
||||
|
||||
`func (o *SchemaGetTagResp) 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 *SchemaGetTagResp) SetMemberActions(v []SchemaPermissionMemberAction)`
|
||||
|
||||
SetMemberActions sets MemberActions field to given value.
|
||||
|
||||
### HasMemberActions
|
||||
|
||||
`func (o *SchemaGetTagResp) HasMemberActions() bool`
|
||||
|
||||
HasMemberActions returns a boolean if a field has been set.
|
||||
|
||||
### GetOriginalText
|
||||
|
||||
`func (o *SchemaGetTagResp) GetOriginalText() string`
|
||||
|
||||
GetOriginalText returns the OriginalText field if non-nil, zero value otherwise.
|
||||
|
||||
### GetOriginalTextOk
|
||||
|
||||
`func (o *SchemaGetTagResp) 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 *SchemaGetTagResp) SetOriginalText(v string)`
|
||||
|
||||
SetOriginalText sets OriginalText field to given value.
|
||||
|
||||
### HasOriginalText
|
||||
|
||||
`func (o *SchemaGetTagResp) HasOriginalText() bool`
|
||||
|
||||
HasOriginalText returns a boolean if a field has been set.
|
||||
|
||||
### GetParsedText
|
||||
|
||||
`func (o *SchemaGetTagResp) GetParsedText() string`
|
||||
|
||||
GetParsedText returns the ParsedText field if non-nil, zero value otherwise.
|
||||
|
||||
### GetParsedTextOk
|
||||
|
||||
`func (o *SchemaGetTagResp) 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 *SchemaGetTagResp) SetParsedText(v string)`
|
||||
|
||||
SetParsedText sets ParsedText field to given value.
|
||||
|
||||
### HasParsedText
|
||||
|
||||
`func (o *SchemaGetTagResp) HasParsedText() bool`
|
||||
|
||||
HasParsedText returns a boolean if a field has been set.
|
||||
|
||||
### GetQuestionCount
|
||||
|
||||
`func (o *SchemaGetTagResp) GetQuestionCount() int32`
|
||||
|
||||
GetQuestionCount returns the QuestionCount field if non-nil, zero value otherwise.
|
||||
|
||||
### GetQuestionCountOk
|
||||
|
||||
`func (o *SchemaGetTagResp) 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 *SchemaGetTagResp) SetQuestionCount(v int32)`
|
||||
|
||||
SetQuestionCount sets QuestionCount field to given value.
|
||||
|
||||
### HasQuestionCount
|
||||
|
||||
`func (o *SchemaGetTagResp) HasQuestionCount() bool`
|
||||
|
||||
HasQuestionCount returns a boolean if a field has been set.
|
||||
|
||||
### GetRecommend
|
||||
|
||||
`func (o *SchemaGetTagResp) GetRecommend() bool`
|
||||
|
||||
GetRecommend returns the Recommend field if non-nil, zero value otherwise.
|
||||
|
||||
### GetRecommendOk
|
||||
|
||||
`func (o *SchemaGetTagResp) 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 *SchemaGetTagResp) SetRecommend(v bool)`
|
||||
|
||||
SetRecommend sets Recommend field to given value.
|
||||
|
||||
### HasRecommend
|
||||
|
||||
`func (o *SchemaGetTagResp) HasRecommend() bool`
|
||||
|
||||
HasRecommend returns a boolean if a field has been set.
|
||||
|
||||
### GetReserved
|
||||
|
||||
`func (o *SchemaGetTagResp) GetReserved() bool`
|
||||
|
||||
GetReserved returns the Reserved field if non-nil, zero value otherwise.
|
||||
|
||||
### GetReservedOk
|
||||
|
||||
`func (o *SchemaGetTagResp) 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 *SchemaGetTagResp) SetReserved(v bool)`
|
||||
|
||||
SetReserved sets Reserved field to given value.
|
||||
|
||||
### HasReserved
|
||||
|
||||
`func (o *SchemaGetTagResp) HasReserved() bool`
|
||||
|
||||
HasReserved returns a boolean if a field has been set.
|
||||
|
||||
### GetSlugName
|
||||
|
||||
`func (o *SchemaGetTagResp) GetSlugName() string`
|
||||
|
||||
GetSlugName returns the SlugName field if non-nil, zero value otherwise.
|
||||
|
||||
### GetSlugNameOk
|
||||
|
||||
`func (o *SchemaGetTagResp) 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 *SchemaGetTagResp) SetSlugName(v string)`
|
||||
|
||||
SetSlugName sets SlugName field to given value.
|
||||
|
||||
### HasSlugName
|
||||
|
||||
`func (o *SchemaGetTagResp) HasSlugName() bool`
|
||||
|
||||
HasSlugName returns a boolean if a field has been set.
|
||||
|
||||
### GetTagId
|
||||
|
||||
`func (o *SchemaGetTagResp) GetTagId() string`
|
||||
|
||||
GetTagId returns the TagId field if non-nil, zero value otherwise.
|
||||
|
||||
### GetTagIdOk
|
||||
|
||||
`func (o *SchemaGetTagResp) 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 *SchemaGetTagResp) SetTagId(v string)`
|
||||
|
||||
SetTagId sets TagId field to given value.
|
||||
|
||||
### HasTagId
|
||||
|
||||
`func (o *SchemaGetTagResp) HasTagId() bool`
|
||||
|
||||
HasTagId returns a boolean if a field has been set.
|
||||
|
||||
### GetUpdatedAt
|
||||
|
||||
`func (o *SchemaGetTagResp) GetUpdatedAt() int32`
|
||||
|
||||
GetUpdatedAt returns the UpdatedAt field if non-nil, zero value otherwise.
|
||||
|
||||
### GetUpdatedAtOk
|
||||
|
||||
`func (o *SchemaGetTagResp) GetUpdatedAtOk() (*int32, bool)`
|
||||
|
||||
GetUpdatedAtOk returns a tuple with the UpdatedAt field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetUpdatedAt
|
||||
|
||||
`func (o *SchemaGetTagResp) SetUpdatedAt(v int32)`
|
||||
|
||||
SetUpdatedAt sets UpdatedAt field to given value.
|
||||
|
||||
### HasUpdatedAt
|
||||
|
||||
`func (o *SchemaGetTagResp) HasUpdatedAt() bool`
|
||||
|
||||
HasUpdatedAt 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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user