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

77
docs/SchemaVoteReq.md Normal file
View File

@@ -0,0 +1,77 @@
# SchemaVoteReq
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**IsCancel** | Pointer to **bool** | is cancel | [optional]
**ObjectId** | **string** | id |
## Methods
### NewSchemaVoteReq
`func NewSchemaVoteReq(objectId string, ) *SchemaVoteReq`
NewSchemaVoteReq instantiates a new SchemaVoteReq 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
### NewSchemaVoteReqWithDefaults
`func NewSchemaVoteReqWithDefaults() *SchemaVoteReq`
NewSchemaVoteReqWithDefaults instantiates a new SchemaVoteReq 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 *SchemaVoteReq) GetIsCancel() bool`
GetIsCancel returns the IsCancel field if non-nil, zero value otherwise.
### GetIsCancelOk
`func (o *SchemaVoteReq) 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 *SchemaVoteReq) SetIsCancel(v bool)`
SetIsCancel sets IsCancel field to given value.
### HasIsCancel
`func (o *SchemaVoteReq) HasIsCancel() bool`
HasIsCancel returns a boolean if a field has been set.
### GetObjectId
`func (o *SchemaVoteReq) GetObjectId() string`
GetObjectId returns the ObjectId field if non-nil, zero value otherwise.
### GetObjectIdOk
`func (o *SchemaVoteReq) 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 *SchemaVoteReq) 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)