1
0
Fork 0
forked from lthn/blockchain
blockchain/utils/sdk/client/go/docs/MaintainersInfoModel.md
Snider 88d4357628
New API Interface (#27)
This pull request introduces a comprehensive new API interface for the blockchain, leveraging OpenAPI v3 to facilitate direct consumption of chain data by GUI and web applications. This change significantly refines the project's build infrastructure, incorporating Conan for dependency management and CMake for configuration, alongside the integration of an OpenAPI Generator to produce SDKs for multiple languages. 

### Highlights

* **New API Interface**: Introduced a new API interface using OpenAPI v3 to enable GUI/WEB development to consume chain data without needing custom server applications.
* **Build System Enhancements**: Significant updates to the build system, including Makefile, CMake, and Conan configurations, to streamline the build process and support new functionalities.
* **Multi-language SDK Generation**: Integrated OpenAPI Generator to automatically create SDKs for various programming languages, including Go, Angular, and PHP, simplifying client-side integration.
2025-10-19 19:12:37 +01:00

4.3 KiB
Generated

MaintainersInfoModel

Properties

Name Type Description Notes
VerMajor Pointer to int32 [optional]
VerMinor Pointer to int32 [optional]
VerRevision Pointer to int32 [optional]
BuildNo Pointer to int32 [optional]
Mode Pointer to int32 [optional]

Methods

NewMaintainersInfoModel

func NewMaintainersInfoModel() *MaintainersInfoModel

NewMaintainersInfoModel instantiates a new MaintainersInfoModel 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

NewMaintainersInfoModelWithDefaults

func NewMaintainersInfoModelWithDefaults() *MaintainersInfoModel

NewMaintainersInfoModelWithDefaults instantiates a new MaintainersInfoModel 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

GetVerMajor

func (o *MaintainersInfoModel) GetVerMajor() int32

GetVerMajor returns the VerMajor field if non-nil, zero value otherwise.

GetVerMajorOk

func (o *MaintainersInfoModel) GetVerMajorOk() (*int32, bool)

GetVerMajorOk returns a tuple with the VerMajor field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetVerMajor

func (o *MaintainersInfoModel) SetVerMajor(v int32)

SetVerMajor sets VerMajor field to given value.

HasVerMajor

func (o *MaintainersInfoModel) HasVerMajor() bool

HasVerMajor returns a boolean if a field has been set.

GetVerMinor

func (o *MaintainersInfoModel) GetVerMinor() int32

GetVerMinor returns the VerMinor field if non-nil, zero value otherwise.

GetVerMinorOk

func (o *MaintainersInfoModel) GetVerMinorOk() (*int32, bool)

GetVerMinorOk returns a tuple with the VerMinor field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetVerMinor

func (o *MaintainersInfoModel) SetVerMinor(v int32)

SetVerMinor sets VerMinor field to given value.

HasVerMinor

func (o *MaintainersInfoModel) HasVerMinor() bool

HasVerMinor returns a boolean if a field has been set.

GetVerRevision

func (o *MaintainersInfoModel) GetVerRevision() int32

GetVerRevision returns the VerRevision field if non-nil, zero value otherwise.

GetVerRevisionOk

func (o *MaintainersInfoModel) GetVerRevisionOk() (*int32, bool)

GetVerRevisionOk returns a tuple with the VerRevision field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetVerRevision

func (o *MaintainersInfoModel) SetVerRevision(v int32)

SetVerRevision sets VerRevision field to given value.

HasVerRevision

func (o *MaintainersInfoModel) HasVerRevision() bool

HasVerRevision returns a boolean if a field has been set.

GetBuildNo

func (o *MaintainersInfoModel) GetBuildNo() int32

GetBuildNo returns the BuildNo field if non-nil, zero value otherwise.

GetBuildNoOk

func (o *MaintainersInfoModel) GetBuildNoOk() (*int32, bool)

GetBuildNoOk returns a tuple with the BuildNo field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetBuildNo

func (o *MaintainersInfoModel) SetBuildNo(v int32)

SetBuildNo sets BuildNo field to given value.

HasBuildNo

func (o *MaintainersInfoModel) HasBuildNo() bool

HasBuildNo returns a boolean if a field has been set.

GetMode

func (o *MaintainersInfoModel) GetMode() int32

GetMode returns the Mode field if non-nil, zero value otherwise.

GetModeOk

func (o *MaintainersInfoModel) GetModeOk() (*int32, bool)

GetModeOk returns a tuple with the Mode field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetMode

func (o *MaintainersInfoModel) SetMode(v int32)

SetMode sets Mode field to given value.

HasMode

func (o *MaintainersInfoModel) HasMode() bool

HasMode returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]