Skip to content

Latest commit

 

History

History
72 lines (39 loc) · 1.88 KB

File metadata and controls

72 lines (39 loc) · 1.88 KB

ScriptLocation

Properties

Name Type Description Notes
Line int32
Column int32

Methods

NewScriptLocation

func NewScriptLocation(line int32, column int32, ) *ScriptLocation

NewScriptLocation instantiates a new ScriptLocation 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

NewScriptLocationWithDefaults

func NewScriptLocationWithDefaults() *ScriptLocation

NewScriptLocationWithDefaults instantiates a new ScriptLocation 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

GetLine

func (o *ScriptLocation) GetLine() int32

GetLine returns the Line field if non-nil, zero value otherwise.

GetLineOk

func (o *ScriptLocation) GetLineOk() (*int32, bool)

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

SetLine

func (o *ScriptLocation) SetLine(v int32)

SetLine sets Line field to given value.

GetColumn

func (o *ScriptLocation) GetColumn() int32

GetColumn returns the Column field if non-nil, zero value otherwise.

GetColumnOk

func (o *ScriptLocation) GetColumnOk() (*int32, bool)

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

SetColumn

func (o *ScriptLocation) SetColumn(v int32)

SetColumn sets Column field to given value.

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