Skip to content

Latest commit

 

History

History
93 lines (50 loc) · 2.76 KB

CompileScriptResult.md

File metadata and controls

93 lines (50 loc) · 2.76 KB

CompileScriptResult

Properties

Name Type Description Notes
BytecodeTemplate string
Fields FieldsSig
Functions []FunctionSig

Methods

NewCompileScriptResult

func NewCompileScriptResult(bytecodeTemplate string, fields FieldsSig, functions []FunctionSig, ) *CompileScriptResult

NewCompileScriptResult instantiates a new CompileScriptResult 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

NewCompileScriptResultWithDefaults

func NewCompileScriptResultWithDefaults() *CompileScriptResult

NewCompileScriptResultWithDefaults instantiates a new CompileScriptResult 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

GetBytecodeTemplate

func (o *CompileScriptResult) GetBytecodeTemplate() string

GetBytecodeTemplate returns the BytecodeTemplate field if non-nil, zero value otherwise.

GetBytecodeTemplateOk

func (o *CompileScriptResult) GetBytecodeTemplateOk() (*string, bool)

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

SetBytecodeTemplate

func (o *CompileScriptResult) SetBytecodeTemplate(v string)

SetBytecodeTemplate sets BytecodeTemplate field to given value.

GetFields

func (o *CompileScriptResult) GetFields() FieldsSig

GetFields returns the Fields field if non-nil, zero value otherwise.

GetFieldsOk

func (o *CompileScriptResult) GetFieldsOk() (*FieldsSig, bool)

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

SetFields

func (o *CompileScriptResult) SetFields(v FieldsSig)

SetFields sets Fields field to given value.

GetFunctions

func (o *CompileScriptResult) GetFunctions() []FunctionSig

GetFunctions returns the Functions field if non-nil, zero value otherwise.

GetFunctionsOk

func (o *CompileScriptResult) GetFunctionsOk() (*[]FunctionSig, bool)

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

SetFunctions

func (o *CompileScriptResult) SetFunctions(v []FunctionSig)

SetFunctions sets Functions field to given value.

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