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

155
docs/SchemaUpdateTagReq.md Normal file
View File

@@ -0,0 +1,155 @@
# SchemaUpdateTagReq
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**DisplayName** | Pointer to **string** | display_name | [optional]
**EditSummary** | Pointer to **string** | edit summary | [optional]
**OriginalText** | Pointer to **string** | original text | [optional]
**SlugName** | Pointer to **string** | slug_name | [optional]
**TagId** | **string** | tag_id |
## Methods
### NewSchemaUpdateTagReq
`func NewSchemaUpdateTagReq(tagId string, ) *SchemaUpdateTagReq`
NewSchemaUpdateTagReq instantiates a new SchemaUpdateTagReq 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
### NewSchemaUpdateTagReqWithDefaults
`func NewSchemaUpdateTagReqWithDefaults() *SchemaUpdateTagReq`
NewSchemaUpdateTagReqWithDefaults instantiates a new SchemaUpdateTagReq 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 *SchemaUpdateTagReq) GetDisplayName() string`
GetDisplayName returns the DisplayName field if non-nil, zero value otherwise.
### GetDisplayNameOk
`func (o *SchemaUpdateTagReq) 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 *SchemaUpdateTagReq) SetDisplayName(v string)`
SetDisplayName sets DisplayName field to given value.
### HasDisplayName
`func (o *SchemaUpdateTagReq) HasDisplayName() bool`
HasDisplayName returns a boolean if a field has been set.
### GetEditSummary
`func (o *SchemaUpdateTagReq) GetEditSummary() string`
GetEditSummary returns the EditSummary field if non-nil, zero value otherwise.
### GetEditSummaryOk
`func (o *SchemaUpdateTagReq) 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 *SchemaUpdateTagReq) SetEditSummary(v string)`
SetEditSummary sets EditSummary field to given value.
### HasEditSummary
`func (o *SchemaUpdateTagReq) HasEditSummary() bool`
HasEditSummary returns a boolean if a field has been set.
### GetOriginalText
`func (o *SchemaUpdateTagReq) GetOriginalText() string`
GetOriginalText returns the OriginalText field if non-nil, zero value otherwise.
### GetOriginalTextOk
`func (o *SchemaUpdateTagReq) 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 *SchemaUpdateTagReq) SetOriginalText(v string)`
SetOriginalText sets OriginalText field to given value.
### HasOriginalText
`func (o *SchemaUpdateTagReq) HasOriginalText() bool`
HasOriginalText returns a boolean if a field has been set.
### GetSlugName
`func (o *SchemaUpdateTagReq) GetSlugName() string`
GetSlugName returns the SlugName field if non-nil, zero value otherwise.
### GetSlugNameOk
`func (o *SchemaUpdateTagReq) 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 *SchemaUpdateTagReq) SetSlugName(v string)`
SetSlugName sets SlugName field to given value.
### HasSlugName
`func (o *SchemaUpdateTagReq) HasSlugName() bool`
HasSlugName returns a boolean if a field has been set.
### GetTagId
`func (o *SchemaUpdateTagReq) GetTagId() string`
GetTagId returns the TagId field if non-nil, zero value otherwise.
### GetTagIdOk
`func (o *SchemaUpdateTagReq) 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 *SchemaUpdateTagReq) SetTagId(v string)`
SetTagId sets TagId 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)