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

108
docs/SchemaTagItem.md Normal file
View File

@@ -0,0 +1,108 @@
# SchemaTagItem
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**DisplayName** | Pointer to **string** | display_name | [optional]
**OriginalText** | Pointer to **string** | original text | [optional]
**SlugName** | Pointer to **string** | slug_name | [optional]
## Methods
### NewSchemaTagItem
`func NewSchemaTagItem() *SchemaTagItem`
NewSchemaTagItem instantiates a new SchemaTagItem 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
### NewSchemaTagItemWithDefaults
`func NewSchemaTagItemWithDefaults() *SchemaTagItem`
NewSchemaTagItemWithDefaults instantiates a new SchemaTagItem 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 *SchemaTagItem) GetDisplayName() string`
GetDisplayName returns the DisplayName field if non-nil, zero value otherwise.
### GetDisplayNameOk
`func (o *SchemaTagItem) 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 *SchemaTagItem) SetDisplayName(v string)`
SetDisplayName sets DisplayName field to given value.
### HasDisplayName
`func (o *SchemaTagItem) HasDisplayName() bool`
HasDisplayName returns a boolean if a field has been set.
### GetOriginalText
`func (o *SchemaTagItem) GetOriginalText() string`
GetOriginalText returns the OriginalText field if non-nil, zero value otherwise.
### GetOriginalTextOk
`func (o *SchemaTagItem) 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 *SchemaTagItem) SetOriginalText(v string)`
SetOriginalText sets OriginalText field to given value.
### HasOriginalText
`func (o *SchemaTagItem) HasOriginalText() bool`
HasOriginalText returns a boolean if a field has been set.
### GetSlugName
`func (o *SchemaTagItem) GetSlugName() string`
GetSlugName returns the SlugName field if non-nil, zero value otherwise.
### GetSlugNameOk
`func (o *SchemaTagItem) 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 *SchemaTagItem) SetSlugName(v string)`
SetSlugName sets SlugName field to given value.
### HasSlugName
`func (o *SchemaTagItem) HasSlugName() bool`
HasSlugName 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)