Skip to content

Latest commit

 

History

History
93 lines (50 loc) · 2.34 KB

FieldsSig.md

File metadata and controls

93 lines (50 loc) · 2.34 KB

FieldsSig

Properties

Name Type Description Notes
Signature string
Names []string
Types []string

Methods

NewFieldsSig

func NewFieldsSig(signature string, names []string, types []string, ) *FieldsSig

NewFieldsSig instantiates a new FieldsSig 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

NewFieldsSigWithDefaults

func NewFieldsSigWithDefaults() *FieldsSig

NewFieldsSigWithDefaults instantiates a new FieldsSig 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

GetSignature

func (o *FieldsSig) GetSignature() string

GetSignature returns the Signature field if non-nil, zero value otherwise.

GetSignatureOk

func (o *FieldsSig) GetSignatureOk() (*string, bool)

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

SetSignature

func (o *FieldsSig) SetSignature(v string)

SetSignature sets Signature field to given value.

GetNames

func (o *FieldsSig) GetNames() []string

GetNames returns the Names field if non-nil, zero value otherwise.

GetNamesOk

func (o *FieldsSig) GetNamesOk() (*[]string, bool)

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

SetNames

func (o *FieldsSig) SetNames(v []string)

SetNames sets Names field to given value.

GetTypes

func (o *FieldsSig) GetTypes() []string

GetTypes returns the Types field if non-nil, zero value otherwise.

GetTypesOk

func (o *FieldsSig) GetTypesOk() (*[]string, bool)

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

SetTypes

func (o *FieldsSig) SetTypes(v []string)

SetTypes sets Types field to given value.

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